|
The email will have to be sent in either HTML OR plain text. What you'll need to do to send email in HTML is find the line
print MAIL "Subject: WHATEVER \n\n";
and below it add
print MAIL "Content-type: text/html\n\n";
Make SURE you remove one of the newlines from the subject line so you end up with
print MAIL "Subject: WHATEVER \n";
print MAIL "Content-type: text/html\n\n";
__________________
I like pie.
|