I have this code at the moment
[php]<?php
include “storescripts/connect_to_mysql.php”;
$rs = mysql_query(‘SELECT email from user LIMIT 0, 10’);
while(list($email) = mysql_fetch_row($rs))
{
// Send Email
mail($email, ‘Notification Letter’, ‘I will fill this in later’);
}
?>[/php]
I want to know 2 things:
1- I need to go on the page to send it but I want it to be sent every week on Monday so I don’t have to access that page again.
2- I want to change the email it’s being sent from (no idea how to do that)
thank you