I have the following code to send an email whenever a new news item is added to my database, but dont know the correct way to add 2 email addresses to recieve the email? Can anyone help?
$ln_email_status = 'yes';
$ln_email_recipient = 'email@domain.com';
if ($ln_news_status = yes){
mail('$ln_email_recipient,',
"SYSTEM - A new news item has been added", "This news item has just been added to the System.\n\n
Author: $n_author\n\nTitle: $n_title\n\nDescription: $n_message\n\nLogon to the System to see more details\nhttp://www.domain.com/",
"From: SYSTEM <emailsend@domain.com>\n" .
"X-Mailer: PHP 4.x");
}