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

[REBOL] Newbie Email question!

From: kimm2:mcmaster:ca at: 5-Jul-2002 10:11

Hi, I used to have this working... But now for some reason it doesn't seem to work. The problem I'm having is that when I try and send an email, the subject won't be sent, only the message is sent. My code is: message: "This is a message" subj: "This is the subject" header: make system/standard/email [subject: subj] until [either error? try [send/header to-block mail_from message header][print "Error sending email" false wait 0:00:02][true]] I'm baffled... -Matt