Home php教程 PHP源码 php smtp send email

php smtp send email

May 24, 2017 pm 02:25 PM
python smtp send email

php通过smtp发送邮件需要通过一个类smtp

发邮件的代码如下:

require_once 'smtp.php';
 
########################################## 
$smtpserver = "smtp.sina.com";//SMTP服务器 
$smtpserverport = 25;//SMTP服务器端口 
$smtpusermail = "god_chen@sina.com";//SMTP服务器的用户邮箱 
$smtpemailto = "45323333@qq.com";//发送给谁 
$smtpuser = "name";//SMTP服务器的用户帐号 
$smtppass = "123456";//SMTP服务器的用户密码 
$mailsubject = "中文";//邮件主题 
$mailbody = "中文测试下能淤泥新年感";//邮件内容 
$mailtype = "HTML";//邮件格式(HTML/TXT),TXT为文本邮件 
########################################## 
$smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);//这里面的一个true是表示使用身份验证,否则不使用身份验证. 
$smtp->debug = FALSE;//是否显示发送的调试信息 
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype)
Copy after login

smtp类的源码如下:

debug = FALSE;
        $this->smtp_port = $smtp_port;
        $this->relay_host = $relay_host;
        $this->time_out = 30; //is used in fsockopen()
        $this->auth = $auth;//auth
        $this->user = $user;
        $this->pass = $pass;
        $this->host_name = "localhost"; //is used in HELO command
        $this->log_file = "";
        $this->sock = FALSE;
    }
 
    /* Main Function */
    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\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: \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 \n");
            }
            else
            {
                $this->log_write("Error: Cannot send email to \n");
                $sent = FALSE;
            }
            fclose($this->sock);
            $this->log_write("Disconnected from remote host\n");
        }
        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:"))
        {
        return $this->smtp_error("sending MAIL FROM command");
        }
        if (!$this->smtp_putcmd("RCPT", "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 . [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;
}
}
 
}
Copy after login

【相关推荐】

1. 详细介绍Python使用SMTP发送邮件实例

2. Python 使用SMTP发送邮件的代码小结

3. c#调用qq邮箱smtp发送邮件修改版代码

4. Python使用SMTP发送邮件

5. php smtp发送邮件

6. Python SMTP邮件模块详解

7. python smtplib模块发送SSL/TLS安全邮件实例

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

Python vs. JavaScript: The Learning Curve and Ease of Use Python vs. JavaScript: The Learning Curve and Ease of Use Apr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Can vs code run in Windows 8 Can vs code run in Windows 8 Apr 15, 2025 pm 07:24 PM

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

PHP and Python: A Deep Dive into Their History PHP and Python: A Deep Dive into Their History Apr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Can visual studio code be used in python Can visual studio code be used in python Apr 15, 2025 pm 08:18 PM

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.

How to run programs in terminal vscode How to run programs in terminal vscode Apr 15, 2025 pm 06:42 PM

In VS Code, you can run the program in the terminal through the following steps: Prepare the code and open the integrated terminal to ensure that the code directory is consistent with the terminal working directory. Select the run command according to the programming language (such as Python's python your_file_name.py) to check whether it runs successfully and resolve errors. Use the debugger to improve debugging efficiency.

Is the vscode extension malicious? Is the vscode extension malicious? Apr 15, 2025 pm 07:57 PM

VS Code extensions pose malicious risks, such as hiding malicious code, exploiting vulnerabilities, and masturbating as legitimate extensions. Methods to identify malicious extensions include: checking publishers, reading comments, checking code, and installing with caution. Security measures also include: security awareness, good habits, regular updates and antivirus software.

See all articles