$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
test message
Is there anyway to change this into a HTML email ?
Thanks in advance