我正在尝试向两名成员发送确认电子邮件,但我不知道该怎么做。以下仅是相关代码。我以前在我的网站中使用 PHP 邮件作为联系页面,这很好,但我不知道如何将它发送给多个人。你能告诉我我做错了什么吗?
功能交换:
//full code for exchange not included
// Redirect to index page if exchange is successful
if ($success){
sendMail($coinsAvail['Email'],$valueResultAdd['Email'],$valueResultAdd['OddJobName']);
header("location: index.php?success=yes&email={$valueResultAdd['Email']}");
}
else{
if($success)
header("location: index.php?success=no&email={$valueResultAdd['Email']}");
}
exit();
function to send email
}
//Send a confirmation email to both members
function sendMail($purchaseEmail, $oddjobEmail, $oddJobName)
{
$to = "$purchaseEmail, $oddjobEmail";
$subject = "$oddJobName";
$message = "Hello! $oddJobName has been requested by $purchaseEmail.";
$from = "someonelse@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
}
谢谢您的帮助。