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

[REBOL] Re: how to put the name in the sender-adress of an email?

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. :( > > 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!)
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