Hi i'm trying to create a system that works in the following way you send an email to a specific email address and then the email that is sent is forwarded onto a list of email addresses in a database i've created
does anyone know how to do this?
thanks for your help, cheers Martin
while ($row=mysql_fetch_array($result)){ $recipients[] = $row[email]; } $recipient_list = implode(",",$recipients);
//do mail mail ("recipient list","Message from you", "$email_text" ,"Bcc: $recipient_list\r\nFrom: Me");