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

rebol headers when sending mail have no "textual" user name

 [1/5] from: moliad:aei:ca at: 11-Nov-2003 6:30


hi, something is nagging me about the way rebol builds the header when sending mail. we can't seem to add a label to the from: mail address here are two valid headers: From: "Maxim Olivier-Adlhoch" <[moliad--aei--ca]> To: <[moliad--aei--ca]> To: [moliad--aei--ca] From: [moliad--aei--ca] note that the first one contains a string-based name to itself, so that all the tools like a mailer, can properly identify the sender, by something others than a cryptic mail address... is there a way to construct a mail header is such a way that the name is always included like in the first example? thanks! -MAx

 [2/5] from: philb:upnaway at: 11-Nov-2003 19:53


Hi Max, I believe Gabrielle has a patch that enables you to do this. Cheers Phil === Original Message === hi, something is nagging me about the way rebol builds the header when sending mail. we can't seem to add a label to the from: mail address here are two valid headers: From: "Maxim Olivier-Adlhoch" <[moliad--aei--ca]> To: <[moliad--aei--ca]> To: [moliad--aei--ca] From: [moliad--aei--ca] note that the first one contains a string-based name to itself, so that all the tools like a mailer, can properly identify the sender, by something others than a cryptic mail address... is there a way to construct a mail header is such a way that the name is always included like in the first example? thanks! -MAx

 [3/5] from: ingo:2b1 at: 11-Nov-2003 13:02


Hi MAx, AFAK standard Rebol is not able to do this, but you can get my http://www.h-o-h.org/mail-patches-255.r which adds the ability to send ["Ingo Hohmann" [no-spam--h-o-h--org]] {mailtext} furthermore your username (from set-user-name) is added to the From: header. Kind regards, Ingo [moliad--aei--ca] wrote:

 [4/5] from: Micael::Gullmes::telenor::se at: 11-Nov-2003 13:16


Hi, I hope this example can help: mail_header: make system/standard/email compose [ to: "Maxim Olivier-Adlhoch" from: [moliad--aei--ca] reply-to: "[moliad--aei--ca]" ] send/header [moliad--aei--ca] "Hello" mail_header Brgds /Micael -----Ursprungligt meddelande----- Från: [moliad--aei--ca] [mailto:[moliad--aei--ca]] Skickat: den 11 november 2003 12:30 Till: [rebol-list--rebol--com] Ämne: [REBOL] rebol headers when sending mail have no "textual" user name hi, something is nagging me about the way rebol builds the header when sending mail. we can't seem to add a label to the from: mail address here are two valid headers: From: "Maxim Olivier-Adlhoch" <[moliad--aei--ca]> To: <[moliad--aei--ca]> To: [moliad--aei--ca] From: [moliad--aei--ca] note that the first one contains a string-based name to itself, so that all the tools like a mailer, can properly identify the sender, by something others than a cryptic mail address... is there a way to construct a mail header is such a way that the name is always included like in the first example? thanks! -MAx

 [5/5] from: lmecir:mbox:vol:cz at: 11-Nov-2003 14:43


Hi Max, see http://www.escribe.com/internet/rebol/m28017.html