Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

change this into a html email

$
0
0
$comment .= $addcomment."\n".GetConfig('defaultmsg');
@mail($info['email'], "$info[subject] (Update: $formdate)", "Event Date : ".$formdate."\n".$comment, GetConfig('msgheaders'));
 
 
The above code is in my cron job and pulls data together to create an email.
 
The email arrives and the subject is filled in with data from $info{subject} but the content of the email is just
 
Email Subject : 
  • test message (Update: 03/06/2013 17.15)‏
 
Email Content
Event Date : 03/06/2013 17.15
test message
 
 
 
 
 
Is there anyway to change this into a HTML email ?
 
 
 
Thanks in advance

Viewing all articles
Browse latest Browse all 13200

Trending Articles