Web Hosting Talk







View Full Version : Best way to send html message?


mantra
06-27-2002, 12:17 PM
Are there any free/paid services that would allow me to send HTML-based newsletter to my clients?

I would prefer a good FREE Service or even better, a php script that would allow to setup a mailing list and let me send html newsletters.

Any ideas?

Brin_AcuNett
06-27-2002, 01:12 PM
Have you tried hotscripts.com or resourceindex.com?

mantra
06-27-2002, 01:33 PM
Yes. There are so many to choose from. Just wondering if anyone had any experience with any of them.

digitalb
06-29-2002, 05:23 AM
Write one usrelf!

use this code and save as a mail.php file or summink!


$to = "client@clientdomain.com";
$subject = "Weekly Newsletter";
$content = "yourhost.com News Letter";

mail($to, $subject , $content, 'FROM: webmaster@$SERVER_NAME \n' . 'Reply-To: webmaster@$SERVER_NAME\r\n');




if they are stored in a database simply connect to the database and then get the details in an array and use a while() or foreach() function to repeat the above code!