dongqiao3833 2013-06-21 05:27
浏览 37
已采纳

PHP脚本无法正确发送电子邮件[关闭]

Below is my scripting for my submit form. I'm getting the email, but all it contains is the IP address and time stamp. I am not receiving any of the other information listed. I'm very new to PHP, so any help would be greatly appreciated. Also, in the email, it is saying from d91b8401, d91b8401@p3nlhg1159.shr.prod.phx3.secureserver.net. Is there a way to correct that?

<?php
include('database/config.php');
include('database/database.php');

$err = '';

if(isset($_POST['submit'])){        

    $first = addslashes(trim($_POST['first'])); 

    $last = addslashes(trim($_POST['last']));   

    $glvar = addslashes(trim($_POST['glvar']));

    $ip = isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; 
    //echo $ip;

     if(($first!='')&& ($last!='')&& ($glvar!='')){ 

        $database = new Database(HOST, DATEBASE, USERNAME, PASSWORD);   

        $allUsers = $database->select('user','glvar_id','*',"glvar_id = '".$glvar."'");
        //echo $ip;     

        $checkglvar = 0;            
    $checkglvar = count($allUsers); 

        $userData = array(              
            'first_name' => $first, 
            'last_name' => $last,               
            'glvar_id' => $glvar,       
            'ip' => $ip,        

        );      

        if(!$checkglvar) {          

            $database->insert('user',$userData);

            $message = "First Name: $first";
            $message = "Last Name: $last";
            $message = "GLVAR ID: $glvar";
            $message = "IP: $ip" . PHP_EOL;
            $message .= "TIME: " . date('Y-m-d H:i:s');

            mail("info@lvrealestateagentssignthepetition.com", "New Petition Signer", $message);

            header('location:thank-you.html');      

        }    else  $err.='<p style="color:red">Ooops! You have already signed the petition</p>';        

    } else {    

        if($first=='') $err.='<p style="color:red">Your First Name is empty</p>';   

        if($last=='') $err.='<p style="color:red">Your Last Name is empty</p>'; 

        if($glvar=='') $err.='<p style="color:red">Your GLVAR ID is empty</p>'; 

    }

}

?>
  • 写回答

3条回答 默认 最新

  • dongwei5794 2013-06-21 05:29
    关注

    You need to use .= to append to the message, you're just replacing it with each assignment.

            $message = "First Name: $first";
            $message .= "Last Name: $last";
            $message .= "GLVAR ID: $glvar";
            $message .= "IP: $ip" . PHP_EOL;
            $message .= "TIME: " . date('Y-m-d H:i:s');
    

    You can change the From: address with:

    mail("info@lvrealestateagentssignthepetition.com", "New Petition Signer", $message, "From: yourname@yourdomain.com");
    

    The fourth argument is optional headers, which override the default headers.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)