doujian1954 2016-08-01 18:10
浏览 7

邮件发送但不提交?

I am a PHP novice here. I have a send mail script that looks like this:

$to      = 'example@email.com';
$from    = 'noreply@email.com';
$subject = 'Test Submission';
$message = 'This is just another test.';
$headers = 'From: example@email.com' . "
" .
// 'Reply-To: example@email.com' . "
" .
'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);

This script works fine and sends an e-mail when the page is loaded. The problem is that when I alter the script just enough so that the form is not submitted until the Submit button is clicked then all of a sudden nothing works anymore. Here is the altered code I have been trying to use (and which seems to go right along with what the PHP site suggests):

if(isset($_POST['submit'])){
    $to      = 'example@email.com';
    $from    = 'noreply@email.com';
    $subject = 'Test Submission';
    $message = 'This is just another test.';
    $headers = 'From: example@email.com' . "
" .
    // 'Reply-To: example@email.com' . "
" .
    'X-Mailer: PHP/' . phpversion();

    mail($to, $subject, $message, $headers);
    }
  • 写回答

1条回答 默认 最新

  • dongzhui2636 2016-08-01 18:15
    关注

    Make sure your submit button on your form has a NAME attribute. The value of that NAME attribute is what gets sent to the server, so:

    <input type="submit" name="btnSubmit" value="Go!">

    ...would result in this variable and value:

    $_POST["btnSubmit"] = "Go!";

    ...and you would check it like this:

    if(isset($_POST["btnSubmit"]))
    {
      ...
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度