Can somebody explain how I create a mailing list? And also how they work? When they submit their Email Address into the form, it emails you their address, and you just write it down or whatever for when you send out an email for news?
Thanks.
Can somebody explain how I create a mailing list? And also how they work? When they submit their Email Address into the form, it emails you their address, and you just write it down or whatever for when you send out an email for news?
Thanks.
You can have a look at http://www.hotscripts.com
Good luck
I can’t believe I never thought about how friggin easy that would be… on a side note though, what would happen if there was an error sending an email? Ie: the e-mail address doesn’t actually exist?
im curious, if i was using php, would i be using the mail() function on every address on the database? or there are other functions out there? suppose that I have 500 people on the database…
thanks
include 'config.php' /*Mysql Connection is done */
result = mysql_query("SELECT * FROM users"); /*Returns all the users. For ex:500 */
set_time_limit(0); /*Unlimited execution time for the script */
/*Sends mail to returned users */
while($rs=mysql_fetch_array($result)) {
mail($rs[email], "My Subject", "Line 1
Line 2
Line 3");
}
ah thanks
:: Copyright KIRUPA 2024 //--