I have a small database of people who wish to be placed on a mailing list.
I have stored the usual parameters like firts name, last name, email address etc.
How do I read from the database and send a common text e-mail to everyone on the list ?
Do i read index by index and add $email_address to the "TO:" section in mail ?
i.e.
while etc etc
next index read $email
$to = $email . ;
I have stored the usual parameters like firts name, last name, email address etc.
How do I read from the database and send a common text e-mail to everyone on the list ?
Do i read index by index and add $email_address to the "TO:" section in mail ?
i.e.
while etc etc
next index read $email
$to = $email . ;
Comment