0

私はすべてを試しましたが、ホスト名ではなくユーザーの電子メールからのように電子メールが受信トレイに表示されるようにする機能を追加できないようです。

ヘッダー属性を追加しようとしましたが、まだ機能していないようです。

コードは次のとおりです。

<?php
/* Set e-mail recipient */
$myemail = "julia@hotmail.com";

/* Check all form inputs using check_input function */

$email = check_input($_POST['email']);


/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("E-mail address not valid");
}
/* Let's prepare the message for the e-mail */
$message = "
The email below would like to be added to the mailing list.

E-mail: $email

";


// create email headers
$headers = 'From: '.$email."\r\n".
'Reply-To: '.$email."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);  


/* Send the message using mail() function */
mail($myemail, $subject, $message);

/* Redirect visitor to the thank you page */
header('Location: trial2.html');
exit();


/* Functions we used */
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
show_error($problem);
}
return $data;
}

function show_error($myError)
{
?>
<html>
<body>

<p>Please correct the following error:</p>
<strong><?php echo $myError; ?></strong>
<p>Hit the back button and try again</p>

</body>
</html>
<?php
exit();
}
?>

ありがとう!

4

1 に答える 1

0

ここから取得$headersします:

@mail($email_to, $email_subject, $email_message, $headers);  

ここに入れます:

/* Send the message using mail() function */
mail($myemail, $subject, $message);

次に、最初の行を削除します(私が推測するどこかのサイトからコピーされました)

あなたは残されるべきです

// create email headers
$headers = 'From: '.$email."\r\n".
  'Reply-To: '.$email."\r\n" .
  'X-Mailer: PHP/' . phpversion();

/* Send the message using mail() function */
mail($myemail, $subject, $message, $headers);

注:myname@example.co.ukメール アドレスを検証する正規表現は、やのようなアドレスでは失敗しますmyname@email.example.comfilter_var代わりにPHP を使用してください。

2 番目の注意:これが機能したとしても、ISP はサーバー上の電子メール アカウントから発信されたようには見えないすべてのメールをブロックする可能性があるため、いずれにせよメールは配信されません。webform@mydomain.com(実際のドメインを使用する) のようなダミー アカウントを設定し、それを差出人アドレスとして使用し、メッセージの本文にユーザーの電子メールを含めることをお勧めします。

于 2013-06-20T00:23:14.720 に答える