Hi,
I'm using php function mail() to send emails. However, I can only text. Can I send HTML mail which inclids <a> links, <img> imgs, and font styles?
Thanks.
Have a look at the PHP Manual under the mail() function
http://www.php.net/manual/en/function.mail.php#id3104099
You might also want to consider using something like http://phpmailer.sourcforge.net/ which has methods to handle a lot of the "behind the scenes" work for this sort of thing.
thanks