xux Posted October 30, 2006 Author Share Posted October 30, 2006 Thanks a lot,am not sure whether you will want to solve another simple problem for me again,sending the newsletter to all the emails in the database.[code]<?php $message = "<img src=\"http://www.smeresources.org/images/newsletter-header.jpg\" alt=\"Signature\"><h1>Testing Your Newsletter</h1>"; // Set some parameters $toAddress = "[email protected]"; $subject = "Test Subject"; $headers = "Content-type: text/html\n\n"; // Try to send the message $success = mail($toAddress,$subject,$message,$headers); if($success){ print "Newsletter Sent"; } else{ echo'Newwsletter could not be sent'; } ?>[/code]how can i implement integrate it to the codes above.My Highest RegardsXUX Link to comment https://forums.phpfreaks.com/topic/24335-phpmysql-is-killing-me/page/2/#findComment-116695 Share on other sites More sharing options...
HuggieBear Posted October 30, 2006 Share Posted October 30, 2006 I suggest posting this as a new question in the forum. Tagging new questions onto existing posts like this reduces the amount of viewers considerably.I'll take a look at it in the new post.RegardsRich Link to comment https://forums.phpfreaks.com/topic/24335-phpmysql-is-killing-me/page/2/#findComment-116713 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.