使用 PhpMailer 和 gmail 联系我们

Posted

技术标签:

【中文标题】使用 PhpMailer 和 gmail 联系我们【英文标题】:Using PhpMailer and gmail for contact us form 【发布时间】:2017-11-18 14:50:19 【问题描述】:

我正在处理这个basic website,其中包含一个联系我们的表格。此联系表单应该将邮件发送到带有用户反馈的预定义邮件地址。由于我使用 gmail 作为 smtp,这不会让用户使用其他电子邮件地址发送电子邮件,并将用户电子邮件地址替换为默认用户电子邮件地址。我应该怎么做才能使用我的电子邮件地址作为联系邮件地址,而用户的邮件地址作为发件人的邮件地址?

例如:

$mail = new phpMailer;

//$mail->SMTPDebug = 3;                               // Enable verbose debug output

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'sakib.cse11.cuet@gmail.com';                 // SMTP username
$mail->Password = 'mypassword';                           // SMTP password
$mail->SMTPSecure = 'ssl';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587;                                    // TCP port to connect to

$mail->setFrom('sakibdterror@gmail.com', 'Mailer');
$mail->addAddress('sakib.cse11.cuet@gmail.com', 'Sakib Rahman');     // Add a recipient
               // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
// $mail->addCC('cc@example.com');
// $mail->addBCC('bcc@example.com');

// $mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
// $mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->ishtml(true);                                  // Set email format to HTML

$mail->Subject = 'Here adasfffasfs is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

if(!$mail->send()) 
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
 else 
    echo 'Message has been sent';

无论发件人地址是什么,邮件总是从用户名地址发送(例如我设置了 mail->setForm ='sakibdterro@gmail.com”,但 google 将其替换为默认用户名“sakib.cse11.cuet @gmail.com")

【问题讨论】:

发布您的(相关)源代码。 我做了@Fred-ii-。感谢您的建议。 我很难理解您的意思:“这不会让用户使用其他电子邮件地址发送电子邮件,并将用户电子邮件地址替换为默认用户电子邮件地址。” -你能详细说明一下它是如何失败的吗? 通常,可以从表单的电子邮件输入中获取“发件人”发件人,如果这是您所要求的。给定(未知表单的输入),即:&lt;input type="text" name="from_email"&gt; 然后您将使用 $from_email = $_POST['from_email']; 然后使用 $mail-&gt;setFrom($from_email, 'Sender mail'); 类型的东西;再次......“如果”这就是你要问的。 不,这不是我要问的。请查看已编辑的帖子@Fred-ii-。无论我设置为 from_email 地址,它都会被 smtp 的默认用户名替换。 【参考方案1】:

发帖前请先搜索一下:answered 已经在这里发过很多次了,the contact form example provided with PHPMailer 会告诉你具体怎么做。

Gmail 不允许您设置任意地址,但您可以在 gmail 设置中设置固定别名。它不允许这样做的原因是因为它是伪造的,并且会导致您的邮件无法通过 SPF 检查。

正确的做法是将您自己的地址作为发件人地址,并添加提交者的地址作为回复。这样你就不会伪造任何东西,当你回复一条消息时,它会发给你期望的人:

$mail->setFrom('sakib.cse11.cuet@gmail.com');
$mail->addReplyTo($_POST['from_email']);

【讨论】:

正确!像魅力一样工作。 2019 年谢谢你 :)

以上是关于使用 PhpMailer 和 gmail 联系我们的主要内容,如果未能解决你的问题,请参考以下文章

使用 smtp 和 Gmail 的 Phpmailer 无法正常工作 - 连接超时

使用 phpmailer 从 Gmail 发送电子邮件。登录错误

PHPMailer Gmail 登录失败

PHPMailer 无法在 Hostinger 上运行,也没有显示任何错误

PHPMailer 使用 SMTP 身份验证发送电子邮件,但 Gmail 仍然声称它无法验证发件人

无法通过 gmail 从新创建的电子邮件中使用 phpMailer 发送 SMTP 邮件 [重复]