<?php
class smtp
{
var $smtp_port;
var $time_out;
var $host_name;
var $log_file;
var $relay_host;
var $debug;
var $auth;
var $user;
var $pass;
var $sock;
function smtp($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
{
$this->debug = true;
$this->smtp_port = $smtp_port;
$this->relay_host = $relay_host;
$this->time_out = 30;
$this->auth = $auth;
$this->user = $user;
$this->pass = $pass;
$this->host_name = "localhost";
$this->log_file ="";
$this->sock = FALSE;
}
function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "")
{
$mail_from = $this->get_address($this->strip_comment($from));
$body = ereg_replace("(^|(\r\n))(\\.)", "\\1.\\3", $body);
$header .= "MIME-Version:1.0\r\n";
if($mailtype=="HTML")
{
$header .= "Content-Type:text/html\r\n";
}
$header .= "To: ".$to."\r\n";
if ($cc != "")
{
$header .= "Cc: ".$cc."\r\n";
}
$header .= "From: $from<".$from.">\r\n";
$header .= "Subject: ".$subject."\r\n";
$header .= $additional_headers;
$header .= "Date: ".date("r")."\r\n";
$header .= "X-Mailer:By Redhat (PHP/".phpversion().")\r\n";
list($msec, $sec) = explode(" ", microtime());
$header .= "Message-ID: <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">\r\n";
$TO = explode(",", $this->strip_comment($to));
if ($cc != "") {
$TO = array_merge($TO, explode(",", $this->strip_comment($cc)));
}
if ($bcc != "") {
$TO = array_merge($TO, explode(",", $this->strip_comment($bcc)));
}
$sent = TRUE;
foreach ($TO as $rcpt_to) {
$rcpt_to = $this->get_address($rcpt_to);
if (!$this->smtp_sockopen($rcpt_to)) {
$this->log_write("Error: Cannot send email to ".$rcpt_to."\n");
$sent = FALSE;
continue;
}
if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
$this->log_write("E-mail has been sent to <".$rcpt_to.">\n");
} else {
$this->log_write("Error: Cannot send email to <".$rcpt_to.">\n");
$sent = FALSE;
}
fclose($this->sock);
$this->log_write("Disconnected from remote host\n");
}
echo "<br>";
echo $header;
return $sent;
}
/* Private Functions */
function smtp_send($helo, $from, $to, $header, $body = "")
{
if (!$this->smtp_putcmd("HELO", $helo)) {
return $this->smtp_error("sending HELO command");
}
#auth
if($this->auth){
if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
return $this->smtp_error("sending HELO command");
}
if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
return $this->smtp_error("sending HELO command");
}
}
#
if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">")) {
return $this->smtp_error("sending MAIL FROM command");
}
if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">")) {
return $this->smtp_error("sending RCPT TO command");
}
if (!$this->smtp_putcmd("DATA")) {
return $this->smtp_error("sending DATA command");
}
if (!$this->smtp_message($header, $body)) {
return $this->smtp_error("sending message");
}
if (!$this->smtp_eom()) {
return $this->smtp_error("sending <CR><LF>.<CR><LF> [EOM]");
}
if (!$this->smtp_putcmd("QUIT")) {
return $this->smtp_error("sending QUIT command");
}
return TRUE;
}
function smtp_sockopen($address)
{
if ($this->relay_host == "") {
return $this->smtp_sockopen_mx($address);
} else {
return $this->smtp_sockopen_relay();
}
}
function smtp_sockopen_relay()
{
$this->log_write("Trying to ".$this->relay_host.":".$this->smtp_port."\n");
$this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);
if (!($this->sock && $this->smtp_ok())) {
$this->log_write("Error: Cannot connenct to relay host ".$this->relay_host."\n");
$this->log_write("Error: ".$errstr." (".$errno.")\n");
return FALSE;
}
$this->log_write("Connected to relay host ".$this->relay_host."\n");
return TRUE;;
}
function smtp_sockopen_mx($address)
{
$domain = ereg_replace("^.+@([^@]+)$", "\\1", $address);
if (!@getmxrr($domain, $MXHOSTS)) {
$this->log_write("Error: Cannot resolve MX \"".$domain."\"\n");
return FALSE;
}
foreach ($MXHOSTS as $host) {
$this->log_write("Trying to ".$host.":".$this->smtp_port."\n");
$this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
if (!($this->sock && $this->smtp_ok())) {
$this->log_write("Warning: Cannot connect to mx host ".$host."\n");
$this->log_write("Error: ".$errstr." (".$errno.")\n");
continue;
}
$this->log_write("Connected to mx host ".$host."\n");
return TRUE;
}
$this->log_write("Error: Cannot connect to any mx hosts (".implode(", ", $MXHOSTS).")\n");
return FALSE;
}
function smtp_message($header, $body)
{
fputs($this->sock, $header."\r\n".$body);
$this->smtp_debug("> ".str_replace("\r\n", "\n"."> ", $header."\n> ".$body."\n> "));
return TRUE;
}
function smtp_eom()
{
fputs($this->sock, "\r\n.\r\n");
$this->smtp_debug(". [EOM]\n");
return $this->smtp_ok();
}
function smtp_ok()
{
$response = str_replace("\r\n", "", fgets($this->sock, 512));
$this->smtp_debug($response."\n");
if (!ereg("^[23]", $response)) {
fputs($this->sock, "QUIT\r\n");
fgets($this->sock, 512);
$this->log_write("Error: Remote host returned \"".$response."\"\n");
return FALSE;
}
return TRUE;
}
function smtp_putcmd($cmd, $arg = "")
{
if ($arg != "") {
if($cmd=="") $cmd = $arg;
else $cmd = $cmd." ".$arg;
}
fputs($this->sock, $cmd."\r\n");
$this->smtp_debug("> ".$cmd."\n");
return $this->smtp_ok();
}
function smtp_error($string)
{
$this->log_write("Error: Error occurred while ".$string.".\n");
return FALSE;
}
function log_write($message)
{
$this->smtp_debug($message);
if ($this->log_file == "") {
return TRUE;
}
$message = date("M d H:i:s ").get_current_user()."[".getmypid()."]: ".$message;
if (!@file_exists($this->log_file) || !($fp = @fopen($this->log_file, "a"))) {
$this->smtp_debug("Warning: Cannot open log file \"".$this->log_file."\"\n");
return FALSE;
}
flock($fp, LOCK_EX);
fputs($fp, $message);
fclose($fp);
return TRUE;
}
function strip_comment($address)
{
$comment = "\\([^()]*\\)";
while (ereg($comment, $address)) {
$address = ereg_replace($comment, "", $address);
}
return $address;
}
function get_address($address)
{
$address = ereg_replace("([ \t\r\n])+", "", $address);
$address = ereg_replace("^.*<(.+)>.*$", "\\1", $address);
return $address;
}
function smtp_debug($message)
{
if ($this->debug) {
echo $message."<br>";
}
}
function get_attach_type($image_tag) { //
$filedata = array();
$img_file_con=fopen($image_tag,"r");
unset($image_data);
while ($tem_buffer=AddSlashes(fread($img_file_con,filesize($image_tag))))
$image_data.=$tem_buffer;
fclose($img_file_con);
$filedata['context'] = $image_data;
$filedata['filename']= basename($image_tag);
$extension=substr($image_tag,strrpos($image_tag,"."),strlen($image_tag)-strrpos($image_tag,"."));
switch($extension){
case ".gif":
$filedata['type'] = "image/gif";
break;
case ".gz":
$filedata['type'] = "application/x-gzip";
break;
case ".htm":
$filedata['type'] = "text/html";
break;
case ".html":
$filedata['type'] = "text/html";
break;
case ".jpg":
$filedata['type'] = "image/jpeg";
break;
case ".tar":
$filedata['type'] = "application/x-tar";
break;
case ".txt":
$filedata['type'] = "text/plain";
break;
case ".zip":
$filedata['type'] = "application/zip";
break;
default:
$filedata['type'] = "application/octet-stream";
break;
}
return $filedata;
}
}
?>
<?php
$smtpserver = "smtp.126.com";//SMTP服务器
$smtpserverport =25;//SMTP服务器端口
$smtpusermail = "alipay1m@126.com";//SMTP服务器的用户邮箱
$smtpemailto = "516147420@qq.com";//发送给谁
$smtpuser = "alipay1m@126.com";//SMTP服务器的用户帐号
$smtppass = "******";//SMTP服务器的用户密码
$mailsubject = "PHP100测试邮件系统";//邮件主题
$mailbody = "<h1>你的用户名是张三,密码是11111 </h1>";//邮件内容
$mailtype = "HTML";//邮件格式(HTML/TXT),TXT为文本邮件
$smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);
$smtp->debug = true;//是否显示发送的调试信息
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);
?>
分享到:
相关推荐
当我们需要在PHP应用中实现邮件发送功能时,通常会利用PHP的内置函数或者专门的邮件发送类。在这个主题中,我们将深入探讨"PHP邮件发送类"的相关知识点,包括其工作原理、常见库的使用以及如何自定义此类。 首先,...
"php 邮件发送类"是一个专门用于通过PHP发送邮件的工具,它可以简化邮件发送过程,使得开发者能够方便地与163和QQ等常见邮箱服务提供商进行通信。在这个场景中,我们使用的类库很可能是PHPMailer,一个广泛使用的...
PHP提供了多种方法来实现这个功能,其中一种是通过使用邮件发送类。本篇文章将详细探讨如何使用PHP进行邮件发送,特别是那些带有附件的邮件。 首先,我们需要了解PHP内置的`mail()`函数。这是一个简单的邮件发送...
"PHP邮件发送类(超经典)"是一个专门针对这一需求编写的PHP类库,它允许开发者更方便、高效地发送邮件。 PHP的邮件发送功能通常依赖于PHP的`mail()`函数,但该函数的功能较为基础,不支持复杂邮件格式如HTML,也不...
这个"PHP邮件发送类"很可能基于PHPMailer库,这是一个广泛使用的开源邮件发送类库,允许开发者通过SMTP协议发送邮件,同时支持发送HTML内容和附件。PHPMailer提供了丰富的功能和选项,使得邮件发送变得灵活且易于...
我们将基于PHP的`PHPMailer`库进行讨论,这是一个强大且广泛使用的邮件发送类。 `PHPMailer`是一个开源的PHP类库,它提供了丰富的功能,包括SMTP验证、HTML邮件、附件支持以及多种错误处理。使用`PHPMailer`可以...
PHPMailer 是一个广泛使用的开源PHP类库,专为发送电子邮件而设计。在6.6.4版本中,它提供了强大的功能和灵活性,使得在PHP环境中处理邮件收发变得简单易行。这个类库支持多种SMTP验证方式,包括PLAIN、LOGIN、CRAM-...
本资源提供了一个“完整版php邮件发送类”,它允许开发者轻松实现这一功能,支持多种邮件格式和收件人管理。 首先,这个类库的核心功能是发送邮件,它可以处理纯文本邮件和HTML格式的邮件。HTML格式的邮件在现代...
`PHP SMTP 邮件发送类` 提供了这样的功能,使得开发者可以便捷地在PHP应用中集成邮件发送服务。这里我们将详细探讨如何使用此类以及相关的知识点。 首先,`class.phpmailer.php` 和 `class.smtp.php` 是PHPMailer库...
PHPMailer是一个开源的邮件发送解决方案,支持SMTP验证,可以避免直接使用PHP内置mail()函数时可能遇到的邮件被标记为垃圾邮件的问题。PHPMailer支持多种邮件协议,包括SMTP、sendmail和mail(),同时也支持HTML邮件...
PHP邮件发送类就是一种工具,它封装了邮件发送的相关逻辑,使得开发者能够更方便地进行邮件通信。本文将详细讲解PHP邮件发送类及其工作原理。 首先,我们需要了解PHP的mail()函数,这是PHP内置的用于发送邮件的函数...
3. **调用SMTP类方法发送邮件**:使用SMTP对象的方法如`sendEmail()`或`sendMessage()`来实际发送邮件。 4. **关闭连接**:发送完成后,调用类中的方法关闭与SMTP服务器的连接。 在实际应用中,为了提高邮件发送的...
这个“phpmailer自动发送邮件类”文件提供了一个简单易用的接口,让你能够通过 PHP 脚本自动发送邮件,无需深入理解 SMTP 协议的复杂性。下面我们将深入探讨这个类库的关键功能和使用方法。 1. **安装与引入**: -...
这个压缩包文件包含了一系列与PHP发送邮件相关的文件,如PHPMailer的核心类文件、SMTP和POP3的处理类以及一个发送邮件的示例脚本。 标题"php发送邮件,php发送邮件插件"指的是使用PHPMailer这个库来实现邮件的发送...
本文将深入探讨如何利用PHPMailer来创建一个邮件发送封装类,并讨论其核心概念和使用方法。 首先,让我们了解PHPMailer的基本使用步骤: 1. **安装PHPMailer**:你可以通过Composer在项目中引入PHPMailer。在终端...
"非常好用的php发送邮件类" 提供了一种高效、简便的方式来实现PHP中的邮件发送。 这个邮件类很可能基于PHPMailer,这是一个开源且流行的PHP邮件处理库。PHPMailer提供了丰富的功能,包括SMTP验证、HTML邮件、附件...
本文将深入探讨基于PHP的邮件收发系统,以及如何利用PHP与MySQL数据库进行交互,实现邮件的管理功能。 首先,让我们从PHP邮件收发系统的核心功能出发。发送邮件是该系统的基础,通常使用PHP的内置函数`mail()`来...
在PHP开发中,有时我们需要通过程序来发送电子邮件,例如通知用户、发送验证码或者分享文件等。`PHPMailer`是一个广泛使用的开源库,它允许我们通过SMTP(Simple Mail Transfer Protocol)协议来发送邮件,并且支持...