I can send email in HTML format using this code:
R E B O L [
-title "sending HTML email"
]
myheader: make object! [
-Content-Type: "text/html"
-From: reboller@hotmail.com
-Return-Path: reboller@hotmail.com
-To: "REBollers"
-Date: to-idate now
-MIME-Version: "1.0"
]
send/header reboller@hotmail.com "<FONT FACE='Lucida' SIZE='+7' COLOR='#FF0000'>Testing sending</FONT>" myheader
halt
And I can send attachment using this code:
R E B O L [
-title "sending HTML email with attachment"
]
myheader: make object! [
-Content-Type: "text/html"
-From: reboller@hotmail.com
-Return-Path: reboller@hotmail.com
-To: "REBollers"
-Date: to-idate now
-MIME-Version: "1.0"
]
send/header/attach reboller@hotmail.com "<FONT FACE='Lucida' SIZE='+7' COLOR='#FF0000'>Testing sending</FONT>" myheader %picture.jpeg
halt
But when I send the email with attacment, the email did not came in HTML format. Why not?
Look: http://www.petke.info/sending.html