用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - php代码库

email php发送邮件

2014-12-03 作者: php源代码大全举报

[php]代码库

function sendEmail($to, $from, $subject, $message, $html_message=null) {
        $eol = "\n";

        $mime_boundary = md5(time());   

        $mime_boundary_header = chr(34) . $mime_boundary . chr(34);

        if (empty($html_message)) {
            $html_message = nl2br($message);
        }

        $headers = "From: $from" . $eol;
        $headers .= "Message-ID: <" . time() . " domain>" . $eol;
        $headers .= "X-Mailer: PHP v" . phpversion() . $eol;          // These two to help avoid spam-filters
        $headers .= 'MIME-Version: 1.0' . $eol;

        // Setup for text OR html
        $headers .= "Content-Type: multipart/alternative; boundary=" . 
            $mime_boundary_header . $eol . $eol;
        $msg = "This is a multi-part message in MIME format to $to." . 
            $eol . $eol;

        // Text Version
        $msg .= "--" . $mime_boundary . $eol;
        $msg .= "Content-Type: text/plain;" .$eol . $eol;

        //$msg .= "Content-Transfer-Encoding: base64".$eol;
        //$msg .= base64_encode($txt_body).$eol.$eol;
        $msg .= $message . $eol . $eol;

        // HTML Version
        $msg .= "--".$mime_boundary . $eol;
        $msg .= "Content-Type: text/html;{$eol}Content-Transfer-Encoding: 7bit" . 
            $eol . $eol;

        //$msg .= "Content-Transfer-Encoding: base64".$eol;
        //$msg .= base64_encode($html_body).$eol.$eol;
        $msg .= $html_message . $eol . $eol;

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

        if (isset($_SERVER) && isset($_SERVER['HTTP_HOST']) && !preg_match('/\.com$/', $_SERVER['HTTP_HOST'])) {
            // DEV
            preg_match('/[\w|\d|\ |\-]+/', $subject, $subject_label);
            if (defined('DOCUMENT_ROOT')) {
                $logfile = DOCUMENT_ROOT .'/scripts/logs/sendEmail/mail_'. microtime(true);

            } else {
                $logfile = '../../scripts/logs/sendEmail/mail_'. microtime(true);
            }

            if (isset($subject_label[0])) {
                $logfile .= ' - '. $subject_label[0];
            }
            $fh = fopen($logfile . '.log', 'w+');

            if (!$fh) {
                $fh = fopen(preg_replace('/^\.\.\//', '', $logfile) . '.log', 'w+');
            }

            if ($fh) {
                $filelog_content = date('Y-m-d H:i:s')."\n\n";
                $filelog_content .= print_r($to, true)."\n";
                $filelog_content .= print_r($subject, true)."\n\n";
                $filelog_content .= print_r($msg, true);

                fwrite($fh, $filelog_content);
                fclose($fh);
            }

        } else {
            mail($to, $subject, $msg, $headers, "-fdonotreply@domain.com");
        }
    }


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...