Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

how to put the name in the sender-adress of an email?

 [1/7] from: agem:crosswinds at: 16-Jun-2001 23:30


how to put the name in the sender-adress of an email? Hi Rebols i think i saw that, but i forgot.. help! -Volker

 [2/7] from: louisaturk:eudoramail at: 16-Jun-2001 19:46


Try something like this: header: make system/standard/email [ From: ["^"Louis A. Turk^"" [louisaturk--eudoramail--com]] ] Louis At 11:30 PM 6/16/2001 +0200, you wrote:

 [3/7] from: agem:crosswinds at: 18-Jun-2001 0:07


RE: [REBOL] Re: how to put the name in the sender-adress of an email? Hi Luis, [louisaturk--eudoramail--com] wrote:
> Try something like this: > > header: make system/standard/email [ > From: ["^"Louis A. Turk^"" [louisaturk--eudoramail--com]] > ] >
no, does not work. :( tried to 'form it to. rebol gives no errors, but i get no mail back. works with email only. -Volker

 [4/7] from: gjones05:mail:orion at: 17-Jun-2001 17:39


From: "Volker Nitsch"
> no, does not work. :( > tried to 'form it to. > rebol gives no errors, but i get no mail back. > works with email only.
Hi, Volker, Try again. The good doc's suggestion works for me. Try this: header: make system/standard/email [ From: ["^"Volker Nitsch^"" [volker--volker--com] Subject: "Hello, to myself" ] send/header [volker--volker--com] "Hi, Volker, How are you today?" header I, of course, changed your real email address due to the archival sites and spam. It should work. I was really pleased to learn how to do this. (Thanks, Louis!) --Scott Jones

 [5/7] from: agem:crosswinds at: 18-Jun-2001 21:32


RE: [REBOL] Re: how to put the name in the sender-adress of an email? hi Scott [gjones05--mail--orion--org] wrote:
> From: "Volker Nitsch" > > no, does not work. :(
<<quoted lines omitted: 11>>
> spam. It should work. I was really pleased to learn how to do this. (Thanks, > Louis!)
and killed the bracket!!! but that was easy to fix :) but to-me: [volker--volker--org] ;this works send to-me join "plain send " [now] ;and this send/header to-me join "email with header /body " [now] probe make system/standard/email [ From: reduce [to-me] Subject: join "email with header /subject " [now] ] ;and this not send/header to-me join "email with header /body " [now] probe make system/standard/email [ From: reduce ["^"Volker Nitsch^"" to-me] Subject: join "email with header /subject " [now] ] maybe my machine hates me? or is paranoid? oops, has it a cause? desperate yours -Volker

 [6/7] from: gjones05:mail:orion at: 18-Jun-2001 15:53


From: Scott Jones
> > header: make system/standard/email [ > > From: ["^"Volker Nitsch^"" [volker--volker--com]
<<quoted lines omitted: 3>>
> > send/header [volker--volker--com] "Hi, Volker, How are you today?" header > >
From: "Volker Nitsch"
> and killed the bracket!!! but that was easy to fix :)
Whoops!!
> to-me: [volker--volker--org] > ;this works
<<quoted lines omitted: 13>>
> maybe my machine hates me? or is paranoid? oops, has it a cause? > desperate yours
Well, this all works on Win98 /View, so you must be right. Maybe you have done something to offend your machine. Maybe you insulted it be using Java or Perl on it. ;-) Seriously, maybe you should submit it as a possible bug in the Linux version (you use Linux, right?). Sorry, but be kind to your computer, Volker!! ;-) --Scott Jones

 [7/7] from: mbicanic:open:hr at: 19-Jun-2001 0:05


Hi Volker, a> ;and this not a> send/header to-me join "email with header /body " [now] a> probe make system/standard/email [ a> From: reduce ["^"Volker Nitsch^"" to-me] a> Subject: join "email with header /subject " [now] a> ] Works fine here (2.5.0.1.1). Maybe is problem in your server? You can try From: reduce ['Volker "<" to-me ">" ... a> maybe my machine hates me? or is paranoid? oops, has it a cause? Probably. :) a> desperate yours a> -Volker regards.mb

Notes
  • Quoted lines have been omitted from some messages.
    View the message alone to see the lines that have been omitted