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

[REBOL] Adding custom headers to emails. Re:

From: bhandley:zip:au at: 4-Aug-2000 12:00

You can add your own header to an email using the header object. For example, your-address: [someone--somewhere--com] header: make system/standard/email compose [ from: to-string your-address to: to-string your-address subject: "Test message" x-approval-by-bruno: 'Yup ] send/header your-address "Test message contents" header HTH Brett Handley