php邮件程序将发送邮件但不包含内容

时间:2013-05-01 15:27:15

标签: phpmailer

这个邮件程序可以和go爸爸一起工作,但是我无法让它与家庭服务器一起工作。它将发送邮件并显示在收件箱中,但不会显示在内容中。我认为这与使用$ body标签有关,但我不确定是否有任何建议?         

    <?php

// PHPmailer settings
$mail = new PHPMailer();  // create a new object
$mail->Issmtp(); // enable SMTP
$mail->SMTPDebug = 1;  // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true;  // authentication enabled
$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
$mail->Host = 'smtp.gmail.com';
$mail->Port = 465; 
$mail->Username = "email"; // SMTP username
$mail->Password = "password"; // SMTP password
$mail->From     = $email;
$mail->FromName = $contact_name;
$mail->SetFrom($email, $contact_name);
$mail->AddAddress('email');
$mail->Priority = 1;
$mail->WordWrap = 50;   // set word wrap
$mail->IsHTML(true);   // send as HTML
$mail->Subject  =  "Gray Gables maintenance request";
$mail->Body = $body;            
$mail->AltBody  =  "This is the text-only body";

// gets info from form
$name = $_POST['name'] ;
$email = $_POST['email'] ;
$phone = $_POST['phone'] ;
$message = $_POST['message'] ;
$ip = $_SERVER['REMOTE_ADDR'];




 // defines how message looks in email
$mail->Body="
Name: $name<br>
Telephone: $phone<br>
Email: $email<br>
IP address: $ip <br>
-------------------<br>
Message:<br>
$message";


// looks good in your inbox
$mail->From = "$email";
$mail->FromName = "$name"; 
$mail->AddReplyTo("$email","$name");



// gives success or error
if(!$mail->Send()) {
   echo 'Message could not be sent.';
       echo 'Mailer Error: ' . $mail->ErrorInfo;
   exit;
    }
    echo '
    <meta http-equiv="refresh" content="3;url=http/">
    <center><font size="5px">
    Message has been sent!!<br>
    you will be redirected to our home page in 3 seconds...<br>
    <a href="http">click here</a> to return now.

    </font>
    </center>
    ';

    ?>

    <?php
    echo ' Client IP: ';
    if ( isset($_SERVER["REMOTE_ADDR"]) )    {
    echo '' . $_SERVER["REMOTE_ADDR"] . ' ';
    } else if ( isset($_SERVER["HTTP_X_FORWARDED_FOR"]) )    {
    echo '' . $_SERVER["HTTP_X_FORWARDED_FOR"] . ' ';
    } else if ( isset($_SERVER["HTTP_CLIENT_IP"]) )    {
    echo '' . $_SERVER["HTTP_CLIENT_IP"] . ' ';
    }
    ?>

1 个答案:

答案 0 :(得分:0)

我认为你正在寻找这个......

$ body = file_get_contents('yourfile.html');

您可以在“yourfile.html”中附加任何HTML内容,该内容会显示在您的邮件正文中。