I’ve developed a simple script to send a personalised email to multiple recipients. I would like to develop it to be able to send HTML formatted emails. Any ideas as to how to do this please? Thanks
Yes, it is possible.
You just have to learn proper format for HTML e-mails. PHP mail() function has nothing to do with it. It will just send anything you compose.
At least you have to provide this header in the header argument of the function:
Content-type: text/html
Thanks - that makes a great start.
G