1

我有一个可以识别级别的脚本,并且我添加了警报,让我知道我是否通过了代码。这两个电子邮件地址正在反映。我想分别发送两封电子邮件,但我的收件箱无法正常工作。我检查了我的垃圾邮件。

有什么我想念的吗?

function emaillog($to,$id,$subject,$message){
include("dbconnect.php");
mysql_query("INSERT INTO emlog(mm,tt,ss,rr) VALUES('$message','$to','$subject','$id')");


}
if($level == 1){
    $assignedtowho_email_result = mysql_query("SELECT Email FROM sheet1 WHERE id IN(SELECT assignedtowho FROM tbl_one WHERE id =$id)");

    while($row_email=mysql_fetch_array($assignedtowho_email_result)){
        $assignedtowho_email=$row_email['Email'];
    }

    // Email Sending department
    $to = $senderEmail;
    $subject = "Refferal status updated by recieving r";
    $message = "Your  status has been updated by ";
    $from = "info@test.co.za";
    $headers = "From:" . $from;
    mail($to,$subject,$message,$headers);
    emaillog($to,$id,$subject,$message);
    $message_alert="Sender mail sent: ".$to;
    echo '<script>alert("'.$message_alert.'")</script>';
    //echo "Mail Sent.";

    // Email Recieving department
    $to = $assignedtowho_email;
    $subject = "Refferal status updated ";
    $message = "Your refferal status has been updated";
    $from = "info@test.co.za";
    $headers = "From:" . $from;
    mail($to,$subject,$message,$headers);
    emaillog($to,$id,$subject,$message);
    $message_alert_2="Assigned mail sent: ".$to;
    echo '<script>alert("'.$message_alert_2.'")</script>';
    //echo "Mail Sent.";
} 
4

1 回答 1

0

要求

要使 Mail 函数可用,PHP 必须在编译期间访问系统上的 sendmail 二进制文件。如果您使用其他邮件程序,例如 qmail 或 postfix,请务必使用它们随附的适当的 sendmail 包装器。PHP 将首先在您的 PATH 中查找 sendmail,然后在以下位置查找:/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib。强烈建议从您的 PATH 中获取 sendmail。此外,编译 PHP 的用户必须有权访问 sendmail 二进制文件。

http://tr2.php.net/manual/en/mail.requirements.php

确保您具备所有要求和 SMTP 服务器。

因此,mail() 函数道具。可以更改取决于您的操作系统和 PHP 版本

你可以看到所有这些 [这里][1]

在 ChangeLog 端。

如果您使用的是 Windows,则必须使用 PEAR Mail。它在这里

对于 Ubuntu 和 Centos 等 Linux 操作系统,您必须确保配置 php.ini 和 apache/httpd.ini

您可以在每个操作系统上使用它

   <?php # Is the OS Windows or Mac or Linux 
if (strtoupper(substr(PHP_OS,0,3)=='WIN')) { 
  $eol="\r\n"; 
} elseif (strtoupper(substr(PHP_OS,0,3)=='MAC')) { 
  $eol="\r"; 
} else { 
  $eol="\n"; 
} ?> 

<?php 
# File for Attachment 
$f_name="../../letters/".$letter;    // use relative path OR ELSE big headaches. $letter is my file for attaching. 
$handle=fopen($f_name, 'rb'); 
$f_contents=fread($handle, filesize($f_name)); 
$f_contents=chunk_split(base64_encode($f_contents));    //Encode The Data For Transition using base64_encode(); 
$f_type=filetype($f_name); 
fclose($handle); 
# To Email Address 
$emailaddress="user@example.com"; 
# Message Subject 
$emailsubject="Heres An Email with a PDF".date("Y/m/d H:i:s"); 
# Message Body 
ob_start(); 
  require("emailbody.php");     // i made a simple & pretty page for showing in the email 
$body=ob_get_contents(); ob_end_clean(); 

# Common Headers 
$headers .= 'From: Jonny <jon@example.com>'.$eol; 
$headers .= 'Reply-To: Jonny <jon@example.com>'.$eol; 
$headers .= 'Return-Path: Jonny <jon@example.com>'.$eol;     // these two to set reply address 
$headers .= "Message-ID:<".$now." TheSystem@".$_SERVER['SERVER_NAME'].">".$eol; 
$headers .= "X-Mailer: PHP v".phpversion().$eol;           // These two to help avoid spam-filters 
# Boundry for marking the split & Multitype Headers 
$mime_boundary=md5(time()); 
$headers .= 'MIME-Version: 1.0'.$eol; 
$headers .= "Content-Type: multipart/related; boundary=\"".$mime_boundary."\"".$eol; 
$msg = ""; 

# Attachment 
$msg .= "--".$mime_boundary.$eol; 
$msg .= "Content-Type: application/pdf; name=\"".$letter."\"".$eol;   // sometimes i have to send MS Word, use 'msword' instead of 'pdf' 
$msg .= "Content-Transfer-Encoding: base64".$eol; 
$msg .= "Content-Disposition: attachment; filename=\"".$letter."\"".$eol.$eol; // !! This line needs TWO end of lines !! IMPORTANT !! 
$msg .= $f_contents.$eol.$eol; 
# Setup for text OR html 
$msg .= "Content-Type: multipart/alternative".$eol; 

# Text Version 
$msg .= "--".$mime_boundary.$eol; 
$msg .= "Content-Type: text/plain; charset=iso-8859-1".$eol; 
$msg .= "Content-Transfer-Encoding: 8bit".$eol; 
$msg .= "This is a multi-part message in MIME format.".$eol; 
$msg .= "If you are reading this, please update your email-reading-software.".$eol; 
$msg .= "+ + Text Only Email from Genius Jon + +".$eol.$eol; 

# HTML Version 
$msg .= "--".$mime_boundary.$eol; 
$msg .= "Content-Type: text/html; charset=iso-8859-1".$eol; 
$msg .= "Content-Transfer-Encoding: 8bit".$eol; 
$msg .= $body.$eol.$eol; 

# Finished 
$msg .= "--".$mime_boundary."--".$eol.$eol;   // finish with two eol's for better security. see Injection. 

# SEND THE EMAIL 
ini_set(sendmail_from,'from@example.com');  // the INI lines are to force the From Address to be used ! 
  mail($emailaddress, $emailsubject, $msg, $headers); 
ini_restore(sendmail_from); 
?> 
于 2013-09-27T20:06:46.437 回答