dtlh12053 2016-02-08 19:51
浏览 31

PHP电子邮件表单不会提交不同的输入电子邮件地址

Any idea why the [Enter email] field on this form will only reach me@me.com if the email entered matches me@me.com?

If I put in any other email address than the one listed in $to=, the email doesn't send.

$fieldname = 'images';
    if ($_POST){

    // we'll begin by assigning the To address and message subject
    $to="me@me.com";
    $subject="Registration";

    $from = "<".stripslashes($_POST['email']).">";

// generate a random string to be used as the boundary marker
$mime_boundary="==Multipart_Boundary_x".md5(mt_rand())."x";

// now we'll build the message headers
$headers = "From: $from
" .
           "MIME-Version: 1.0
" .
           "Content-Type: multipart/mixed;
" .
           " boundary=\"{$mime_boundary}\"
";

Here's a Pastebin.

  • 写回答

1条回答 默认 最新

  • douxiji8707 2016-02-08 19:55
    关注

    You are setting the from header to be the address posted in the form, and the to header to be your email address. Should be reversed if you are trying to send an email to them.

    $to="me@me.com";
    $subject="Registration";
    
    $from = "<".stripslashes($_POST['email']).">";
    

    If indeed you want the email to appear to come from the address listed in the form, you can't in general do that. You can't send email on behalf of another use (your SMTP server is likely to reject it these days). This is to prevent pfishing attacks (FROM: Someone@ThatYouKnow.com, SUBJECT: What is that password again?).

    Send it from an email address that you control. Include the email address from the form as part of the body of the email.

    评论

报告相同问题?

悬赏问题

  • ¥15 BP神经网络控制倒立摆
  • ¥20 要这个数学建模编程的代码 并且能完整允许出来结果 完整的过程和数据的结果
  • ¥15 html5+css和javascript有人可以帮吗?图片要怎么插入代码里面啊
  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算