I do no know how to send HTML formatted Newsletter.
Please anybody help with detailed example.
Regards.
If you are using the mail() function, you can set the header to display the message in HTML.
$sender = "From: Someone <someone@server.com>" $header = "Content-Type: text/html\n"; $header .= $sender; mail($recipients,$subject,$message,$header);