如何使此表单能够发送给多个收件人?目前,它只允许我将其发送到1封电子邮件,当我尝试输入多个时(例如" user1 @ example.com,user2 @ example.com")它返回什么时候它无效的消息。我需要做些什么来解决这个问题?
编辑:用户必须输入要发送的电子邮件地址,但它只适用于1,这就是为什么我要求帮助我如何编辑代码以处理多封电子邮件/收件人,并用逗号和空格分隔。
这是代码
<?php
if(isset($_POST['email'])) {
$email_to = array($_GET["celebrant_emails"]);
$email_subject = "Email from website Contact Form";
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the email you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go <a href='http://celebrantsaustralia.asn.au/celebrants-trial.htm'>back</a> and fix these errors.<br /><br />";
die();
}
// validation expected data exists
if(!isset($_POST['first_name']) ||
!isset($_POST['last_name']) ||
!isset($_POST['email']) ||
!isset($_POST['comments']) ||
!isset($_POST['celebrant_emails'])) {
died('We are sorry, but there appears to be a problem with the email you submitted.');
}
$first_name = $_POST['first_name']; // required
$last_name = $_POST['last_name']; // required
$email_from = $_POST['email']; // required
$comments = $_POST['comments']; // required
$celebrant_emails = $_POST['celebrant_emails']; // required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
$error_message .= 'The First Name you entered does not appear to be valid.<br />';
}
if(!preg_match($string_exp,$last_name)) {
$error_message .= 'The Last Name you entered does not appear to be valid.<br />';
}
if(strlen($comments) < 2) {
$error_message .= 'The Message you entered does not appear to be valid.<br />';
}
if(!preg_match($email_exp,$celebrant_emails)) {
$error_message .= 'The Celebrant Email(s) you entered does not appear to be valid.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Email details below.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($last_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Message: ".clean_string($comments)."\n";
// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>
<!-- include your own success html here -->
<html>
<head>
<title>Email sent!</title>
</head>
<body>
<b>Thank you for contacting us. We will be in touch with you shortly.</b>
<p>(Page will auto-direct in a moment, if it doesn't click <a href="http://website.com">here</a>)</p>
</body>
</html>
<?php
}
?>
答案 0 :(得分:0)
有很多方法可以做到这一点。
$email_to = "jhewitt@amleo.com,some@other.com,yet@another.net";
$email_to = 'Mary <mary@example.com>, Kelly <kelly@example.com>';
如果您需要将电子邮件添加为CC或BCC,请在标题中添加以下部分:
$headers .= "CC: sombodyelse@noplace.com".PHP_EOL;
$headers .= "BCC: hidden@special.com".PHP_EOL;
答案 1 :(得分:0)
for (char c : chars)
答案 2 :(得分:0)
每封电子邮件写一个邮件功能。
mail('example1@example.com', 'My Subject', $message);
mail('example2@example.com', 'My Subject', $message);
mail('example3@example.com', 'My Subject', $message);
mail('example4@example.com', 'My Subject', $message);
mail('example5@example.com', 'My Subject', $message);
或
foreach($mail as $mails ){
mail($mail, 'My Subject', $message);
}