私の$headers
and または secondmail()
関数は正しくないか不適切ですか? マイページにはフォームがあり、入力すると受信者に電子メールが送信され、2 番目の電子メールはテキスト メッセージで送信されます (多くの通信事業者には、テキストから電子メールへの機能があります)。フォームを送信すると、最初のmail()
機能は機能しますが、2 番目の機能は機能しません。何か案は?また、メールとテキストメッセージを送信して(これは素晴らしいアイデアだと思いました)、注意が必要なメールがあることを受信者に通知したいので、これを行っています。
これが私の言いたいことです。
// HTML FORM here, collects just name, email, subject line, message
// When the form is submitted it does this...
$to = "recepient@email.com";
$to_sms = "recepienttextnumber@tmomail.net";
$subject = filter_var($_POST['subject'], FILTER_SANITIZE_STRING)." - FORM";
$headers = 'MIME-Version: 1.0' . "\r\n" .
'Content-type:text/html;charset=iso-8859-1' . "\r\n" .
'From: noreply@email.com' . "\r\n" .
'Reply-To: info@email.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$body = "
<html>
<p>This is an automatic email notification. <strong>Please do not reply to this email</strong></p>
<p>You received a message from ". $name . " that needs your attention ASAP.!</p>
<p>Client name: ".$name."<br />
Client phone: ".$phone."<br />
Email: ".$email."<br />
About: ".$_POST['subject']."<br />
Message: ".$message."</p>
</html>";
$body_sms = "Great news! ".$name." has contacted you via the FORM. Check your email now.";
// Send Email & Text Notification
//Here sends out the form via email
mail($to, $subject, $body, $headers);
//alternatively a second message is sent to another
mail($to_sms, $subject, $body_sms, "From: FORM");
//Echos a thank you.