PHP 向在文本框中输入的用户邮件地址发送邮件
PHP Send a mail to user mail address entered into a text box
我正在尝试制作一个简单的表单,向用户 defined/entered 电子邮件地址发送一个 link 给他们。
访客 > 输入邮件 > 点击发送 > 收到一封带有 link
的邮件
但我正在努力让它发挥作用。
$headers = "From: Siddharth Jain <email>\r\n";
$headers .= "Reply-To: Siddharth Jain <email>\r\n";
$headers .= "Return-Path: email\r\n";
$headers .= "Bcc: Siddharth Jain <email>\r\n";
$headers .= "PHP/" . phpversion();</p>
<p>$to = $_REQUEST['email'];</p>
<p>$subject="";</p>
<p>$mailcontent='Codeword: '.$_POST["text_box"];</p>
<p>mail($to, $subject, $mailcontent, $headers);
将 "email" 替换为您的电子邮件,并将 "Siddharth Jain" 替换为您需要在该电子邮件中显示的姓名。
感谢米塔利·梅塔 :)
成功了。
<?php
// Contact subject
$subject ="mail subject";
// Details
$message="$detail";
// Mail of sender
$mail_from="no-reply@domain.com";
// From
$header="from: no-reply@domain.com";
// Enter your email address
$to = $_REQUEST['customer_mail'];
$send_contact=mail($to,$subject,$message,$header);
// Check, if message sent to your email
// display message "We've recived your information"
if($send_contact){
header("Location:http://www.domain.com/");
}
else {
echo "ERROR";
}
?>
万一别人想要它:)
这也向我发送了请求的副本。
我正在尝试制作一个简单的表单,向用户 defined/entered 电子邮件地址发送一个 link 给他们。
访客 > 输入邮件 > 点击发送 > 收到一封带有 link
的邮件但我正在努力让它发挥作用。
$headers = "From: Siddharth Jain <email>\r\n";
$headers .= "Reply-To: Siddharth Jain <email>\r\n";
$headers .= "Return-Path: email\r\n";
$headers .= "Bcc: Siddharth Jain <email>\r\n";
$headers .= "PHP/" . phpversion();</p>
<p>$to = $_REQUEST['email'];</p>
<p>$subject="";</p>
<p>$mailcontent='Codeword: '.$_POST["text_box"];</p>
<p>mail($to, $subject, $mailcontent, $headers);
将 "email" 替换为您的电子邮件,并将 "Siddharth Jain" 替换为您需要在该电子邮件中显示的姓名。
感谢米塔利·梅塔 :)
成功了。
<?php
// Contact subject
$subject ="mail subject";
// Details
$message="$detail";
// Mail of sender
$mail_from="no-reply@domain.com";
// From
$header="from: no-reply@domain.com";
// Enter your email address
$to = $_REQUEST['customer_mail'];
$send_contact=mail($to,$subject,$message,$header);
// Check, if message sent to your email
// display message "We've recived your information"
if($send_contact){
header("Location:http://www.domain.com/");
}
else {
echo "ERROR";
}
?>
万一别人想要它:) 这也向我发送了请求的副本。