仓酷云

标题: PHP网页设计邮件发归还有成绩吗?送人人一个写好的... [打印本页]

作者: 灵魂腐蚀    时间: 2015-2-4 00:09
标题: PHP网页设计邮件发归还有成绩吗?送人人一个写好的...
刚开始写页面程序,调试完书中的例子。然后就可以尝试编写留言板了,成绩   c_smtp_client.php
<?php
/* smtp client class */
class c_smtp_client
{
    var $connection;
    var $server;
    var $elog_fp;
    var $log_file='./smtp_client.log';
    var $do_log=true;
    var $need_auth=true;
    var $username;
    var $password;

    // 机关器
    function c_smtp_client($server='')
    {
        if (!$server)
        {
            $this->server="localhost";
        }
        else
        {
            $this->server=$server;
        }

        $this->connection = fsockopen($this->server, 25);
        if ($this->connection <= 0) return 0;
        fputs($this->connection,"HELO xyz\r\n");
    }
   
    function email($from_mail, $to_mail, $to_name, $header, $subject, $body)
    {
        if ($this->connection <= 0) return 0;
        
        // 邮件用户认证
        if ($this->need_auth)
        {
            $this->elog("AUTH LOGIN", 1);
            fputs($this->connection,"AUTH LOGIN\r\n");
            $this->elog(fgets($this->connection, 1024));
            
            $base64_username=base64_encode($this->username);
            $this->elog("$base64_username", 1);
            fputs($this->connection,"$base64_username\r\n");
            $this->elog(fgets($this->connection, 1024));

            $base64_password=base64_encode($this->password);
            $this->elog("$base64_password", 1);
            fputs($this->connection,"$base64_password\r\n");
            $this->elog(fgets($this->connection, 1024));
        }

        $this->elog("MAIL FROM:$from_mail", 1);
        fputs($this->connection,"MAIL FROM:$from_mail\r\n");
        $this->elog(fgets($this->connection, 1024));
        
        $this->elog("RCPT TO:$to_mail", 1);
        fputs($this->connection, "RCPT TO:$to_mail\r\n");
        $this->elog(fgets($this->connection, 1024));
        
        $this->elog("DATA", 1);
        fputs($this->connection, "DATA\r\n");
        $this->elog(fgets($this->connection, 1024));

        $this->elog("Subject: $subject", 1);
        $this->elog("To: $to_name", 1);
        fputs($this->connection,"Subject: $subject\r\n");
        fputs($this->connection,"To: $to_name\r\n");

        if ($header)
        {
            $this->elog($header, 1);
            fputs($this->connection, "$header\r\n");
        }

        $this->elog("", 1);
        $this->elog($body, 1);
        $this->elog(".", 1);
        fputs($this->connection,"\r\n");
        fputs($this->connection,"$body \r\n");
        fputs($this->connection,".\r\n");
        $this->elog(fgets($this->connection, 1024));

        return 1;
    }


    function send()
    {
        if ($this->connection)
        {
            fputs($this->connection, "QUIT\r\n");
            fclose($this->connection);
            $this->connection=0;
        }
    }

    function close()
    {
        $this->send();
    }

    function elog($text, $mode=0)
    {
        if (!$this->do_log) return;

        // open file
        if (!$this->elog_fp)
        {
            if (!($this->elog_fp=fopen($this->log_file, 'a'))) return;
            fwrite($this->elog_fp, "\n-------------------------------------------\n");
            fwrite($this->elog_fp, " Sent " . date("Y-m-d H:i:s") . "\n");
            fwrite($this->elog_fp, "-------------------------------------------\n");
        }

        // write to log
        if (!$mode)
        {
            fwrite($this->elog_fp, "    $text\n");
        }
        else
        {
            fwrite($this->elog_fp, "$text\n");
        }
    }
}
?>



c_mail.php
<?php

    /* 邮件发送类 */
    require_once dirname(__FILE__)."/c_smtp_client.php";
    static $c_smtp_client;
    if(!isset($c_smtp_client))
    {
        $c_smtp_client              =    & new c_smtp_client($smtp_server['name']);
        $c_smtp_client->do_log      =    false;
        $c_smtp_client->need_auth   =    $smtp_server['need_auth'];
        $c_smtp_client->username    =    $smtp_server['username'];
        $c_smtp_client->password    =    $smtp_server['password'];   
    }

    class c_mail
    {
        // html格局的Mail信笺
        function html_mailer($from_name,$from_mail,$to_name,$to_mail,$subject,$message,$reply_mail)
        {
            $headers     =    "";
            $headers    .=    "MIME-Version: 1.0\r\n";
            $headers    .=    "Content-type: text/html; charset=gb2312\r\n";
            $headers    .=    "From: ".$from_name."<".$from_mail.">\r\n";
            $headers    .=    "To: ".$to_name."<".$to_mail.">\r\n";
            $headers    .=    "Reply-To: ".$from_name."<".$reply_mail.">\r\n";
            $headers    .=    "X-Priority: 1\r\n";
            $headers    .=    "X-MSMail-Priority: High\r\n";
            $headers    .=    "X-Mailer: WebCMS MAIL SERV";

            // 入手下手发送邮件
            if($smtp_server['name']=='')
            {
                @mail($to_mail, $subject, $message, $headers);
            }
            else
            {
                $c_smtp_client->email($from_mail,$to_mail,$to_name,$headers,$subject,$message);
                $c_smtp_client->send();        
            }
        }
}
?>


config.inc.php
<?php
    //smtp_server['name']=='';则暗示直接利用mail();         
    //smtp_server['name']=='localhost';暗示法式地点主机的smtp办事器
    $smtp_server['name']            =    "";
    $smtp_server['need_auth']       =    true;
    $smtp_server['username']        =    '';
    $smtp_server['password']        =    '';
?>


sendmail.php
<?php
    //挪用办法
    require_once dirname(__FILE__)."/config.inc.php";
    require_once dirname(__FILE__)."/c_mail.php";
    $c_mail    = new c_mail();
    $c_mail->html_mailer($from_name,$from_mail,$to_name,$to_mail,$subject,$message,$reply_mail);

?>  《PHP+MYSQL WEB开发(第三版)》号称圣经级,(也许是个不错的选择(声明:作者没给我啥好处费,我也不是书托,隔着大老远,我连他老兄的面都没见过的说-_-)
作者: 变相怪杰    时间: 2015-2-4 09:29
使用 jquery 等js框架的时候,要随时注意浏览器的更新情况,不然很容易发生框架不能使用。
作者: 精灵巫婆    时间: 2015-2-9 21:18
Ps:以上纯属原创,如有雷同,纯属巧合
作者: 小妖女    时间: 2015-2-19 09:02
学好程序语言,多些才是王道,写两个小时代码的作用绝对超过看一天书,这个我是深有体会(顺便还能练打字速度)。
作者: 深爱那片海    时间: 2015-3-5 18:32
再就是混迹于论坛啦,咱们的phpchina的论坛就很强大,提出的问题一般都是有达人去解答的,以前的帖子也要多看看也能学到不少前辈们的经验。别的不错的论坛例如php100,javaeye也是很不错的。
作者: 莫相离    时间: 2015-3-12 11:18
,熟悉html,能用div+css,还有javascript,优先考虑linux。我在开始学习的时候,就想把这些知识一起学习,我天真的认为同时学习能够互相呼应,因为知识是相通的。
作者: 再见西城    时间: 2015-3-17 04:09
多看优秀程序员编写的代码,仔细理解他们解决问题的方法,对自身有很大的帮助。
作者: 冷月葬花魂    时间: 2015-3-19 23:46
曾经犯过一个很低级的错误,我在文件命名的时候用了一个横线\\\\\\\'-\\\\\\\' 号,结果找了好几个小时的错误,事实是命名的时候 是不能用横线 \\\\\\\'-\\\\\\\' 的,应该用的是下划线  \\\\\\\'_\\\\\\\' ;
作者: 谁可相欹    时间: 2015-3-20 13:36
我还是推荐用firefox ,配上firebug 插件调试js能省下不受时间。谷歌的浏览器最好也不少用,因为谷歌的大侠们实在是太天才啦,把一些原来的js代码加了一些特效。
作者: 愤怒的大鸟    时间: 2015-3-24 21:02
曾经犯过一个很低级的错误,我在文件命名的时候用了一个横线\\\\\\\'-\\\\\\\' 号,结果找了好几个小时的错误,事实是命名的时候 是不能用横线 \\\\\\\'-\\\\\\\' 的,应该用的是下划线  \\\\\\\'_\\\\\\\' ;
作者: 蒙在股里    时间: 2015-3-24 23:38
说点我烦的低级错误吧,曾经有次插入mysql的时间 弄了300年结果老报错,其实mysql的时间是有限制的,大概是到203X年  具体的记不清啦,囧。
作者: 金色的骷髅    时间: 2015-4-1 03:11
我要在声明一下:我是个菜鸟!!我对php这门优秀的语言也是知之甚少。但是我要在这里说一下php在网站开发中最常用的几个功能:
作者: admin    时间: 2015-4-6 09:04
曾经犯过一个很低级的错误,我在文件命名的时候用了一个横线\\\\\\\'-\\\\\\\' 号,结果找了好几个小时的错误,事实是命名的时候 是不能用横线 \\\\\\\'-\\\\\\\' 的,应该用的是下划线  \\\\\\\'_\\\\\\\' ;
作者: 因胸联盟    时间: 2015-4-11 15:10
再就是混迹于论坛啦,咱们的phpchina的论坛就很强大,提出的问题一般都是有达人去解答的,以前的帖子也要多看看也能学到不少前辈们的经验。别的不错的论坛例如php100,javaeye也是很不错的。
作者: 乐观    时间: 2015-4-13 03:32
Ps:以上纯属原创,如有雷同,纯属巧合
作者: 再现理想    时间: 2015-4-21 19:11
学习php的目的往往是为了开发动态网站,phper就业的要求也涵盖了很多。我大致总结为:精通php和mysql
作者: 山那边是海    时间: 2015-4-24 03:56
多看优秀程序员编写的代码,仔细理解他们解决问题的方法,对自身有很大的帮助。
作者: 简单生活    时间: 2015-5-6 16:09
最后祝愿,php会给你带来快乐的同时 你也会给他带来快乐。
作者: 分手快乐    时间: 2015-5-12 14:23
要进行开发,搭建环境是首先需要做的事,windows下面我习惯把环境那个安装在C盘下面,因为我配的环境经常出现诡异事件,什么事都没做环境有的时候就不能用啦。
作者: 老尸    时间: 2015-7-8 03:16
建议加几个专业的phper的群,当然啦需要说话的人多,一处一点问题能有人回答你的,当然啦要让人回答你的问题,平时就得躲在里面聊天,大家混熟啦,愿意回答你问题的人自然就多啦。
作者: 透明    时间: 2015-7-8 20:16
对于初学者来说不推荐去拿钱买的。当然如果一个网站你经常去用,而且里面的资料也比较有用,最好还是买个会员比较好,毕竟那些也是别人的工作成果。




欢迎光临 仓酷云 (http://ckuyun.com/) Powered by Discuz! X3.2