php表单发送到邮箱V1.0

html表单代码:

<form action="index.php" name="form" method="POST">
    <ul >
    <input name="url" type="hidden" id="url">
    <input name="ip" type="hidden" id="ip">
    <li><p>名称:</p><input type="text" name="name" id="name" /></li>
    <li><p>电话:</p><input type="text" name="tel" id="tel" /></li>
    <li><p>留言:</p><textarea class="teare"  name="des"></textarea></li>
    </ul>
</form>
<!--获取当前链接和用户ip-->
<script src="http://pv.sohu.com/cityjson?ie=utf-8"></script>
<script language="javascript">
document.getElementById(‘url‘).value=window.location.href;
document.getElementById(‘ip‘).value=returnCitySN["cip"]+‘,‘+returnCitySN["cname"];
</script>

index.php代码为:

<?php 

//接收表单提交的数据
$name = $_POST[‘name‘];
$tel = $_POST[‘tel‘];
$des= $_POST[‘des‘];
$url = $_POST[‘url‘];
$ip = $_POST[‘ip‘];

if($name!=""&&$tel!=""){//判断name、tel是否为空

    require_once (‘send.php‘); 

    //########################################## 

    $smtpserver = "";//SMTP服务器
    $smtpserverport =25;//SMTP服务器端口
    $smtpusermail = "";//SMTP服务器的用户邮箱
    $smtpemailto = "";//发送给谁
    $smtpuser = "";//SMTP服务器的用户帐号
    $smtppass = "";//SMTP服务器的用户密码 

    $mailsubject = "预约提醒";//邮件主题 

    $mailbody = "<h1>在线预约提醒</h1><br />姓名:".$name."<br />联系方式:".$tel."<br />留言:".$des."<br />提交URL:".$url."<br />提交时间:".date(‘Y-m-d H:i:s‘,time())."<br />IP地址:".$ip."  (仅供参考)";//邮件内容

    $mailtype = "HTML";//邮件格式(HTML/TXT),TXT为文本邮件 

    //########################################## 

    $smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);
    $smtp->debug = false;//是否显示发送的调试信息
    $smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype); 

    echo "<script>alert(‘您已成功提交!‘);window.location.href=‘".$url."‘;</script>";
}

echo "<script>alert(‘姓名或电话不能为空...‘);window.location.href=‘".$url."‘;</script>";

?>
send.php代码为:
    <?
    class smtp
    {
        /* Public Variables */
        public $smtp_port;
        public $time_out;
        public $host_name;
        public $log_file;
        public $relay_host;
        public $debug;
        public $auth;
        public $user;
        public $pass; 

        /* Private Variables */
        private $sock; 

        /* Constractor */
        function smtp($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
        {
            $this->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 = preg_replace("/(^|(\r\n))(\\.)/", "\\1.\\3", $body);
            $header .= "MIME-Version:1.0\r\n";
            if($mailtype=="HTML"){
                $header .= "Content-Type:text/html;charset=gb2312\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 = preg_replace("/^[email protected]([^@]+)$/", "\\1", $address);
            if ([email protected]($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 (!preg_match("/^[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 ([email protected]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 (preg_match($comment, $address)) {
                $address = preg_replace($comment, "", $address);
            } 

            return $address;
        } 

        function get_address($address)
        {
            $address = preg_replace("/([ \t\r\n])+/", "", $address);
            $address = preg_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;
        } 

    }
    ?> 
时间: 2024-10-14 12:45:33

php表单发送到邮箱V1.0的相关文章

织梦cmsf表单提交到邮箱 织梦表单发送到邮箱 织梦自定义表单发邮箱

大家在做织梦做网站开发时会遇到一个问题:织梦的自定义表单是一个很鸡肋的功能,不仅在后台展示得奇丑,而且也没有提醒功能,使用起来很不方便.很多人用织梦自定义表单时,都想用户提交表单的时候可以发送到自己的邮箱里面去提醒自己.这样省了经常去织梦网站后台看最新的表单情况. 第一步:打开织梦后台,系统->核心参数 开启smtp 第二步: 修改/plus/diy.php代码.打开网站根目录下的plus文件 夹,里面有个diy.php文件(表单提交后处理文件),打开它,在85行上下有如下代码: $query

表单发送文件及加自定义参数

/****************************************************************************************** 作者: Eddie Xu ** 时间: 2017/12/7 20:16:44 ** 版本: V1.0.0 ** CLR: 4.0.30319.42000 ** GUID: c76c1823-494c-4fb3-8f3e-0d957eaa4089 ** 机器名: DESKTOP-ECII567** 描述: 尚未编写描

dedecms织梦自定义表单发送到指定邮箱(qq,163)

网上很多教程都是用dedecms自带的邮件库发送邮件,而且是写死要发送的字段内容,今天我们用phpmailer来给站长发送自定义表单提交的数据到指定邮箱上(QQ邮箱,163邮箱都可以),不写死任何东西,有什么字段就提交发送什么字段. 操作之前,我们要先搞定用来发送邮件的那个邮箱,说白了就是要开启SMTP. QQ篇 登录QQ邮箱-设置-账户,找到POP3/IMAP/SMTP,开启,现在的邮箱开启POP3/SMTP都要授权码了,千万要记下你的授权码啊,等一下是作为密码使用的. 开启成功后是这样的 1

DedeCMS织梦自定义表单发送指定邮件

第一步.创建自定义表单 首先,我先自定义创建一个自定义表单,先把我们想要的属性,添加进行,然后完成后. 如下图: 1.先新建自定义表单,定义好前台页面.核心→频道模型→自定义表单→增加新的自定义表单 第二步.修改文件 打开网站根目录下的plus文件夹,里面有个diy.php文件(表单提交后处理文件),打开它,在85行上下有如下代码: $query = "INSERT INTO `{$diy->table}` (`id`, `ifcheck` $addvar)  VALUES (NULL,

php+socket模拟表单发送请求

1 <?php 2 /** 3 * http请求类(php + socket) 4 * @todo 这里还有很多未完善的地方,仅有简单的get post head请求 5 * @author [email protected] 6 * @version 1.0.0 7 */ 8 9 class HttpClient { 10 11 const CRLF = "\r\n"; 12 private $fh = null; //socket handle 13 private $err

form表单发送请求实例

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8" import="java.util.*,javax.faces.context.FacesContext,javax.faces.application.FacesMessage,javax.servlet.http.HttpServletRequest&q

from表单发送请求方式

1,直接用表单的 action 属性跳转路由,此方法必须各节点的name属性和 Java bean  实体类属性相对应,并且onsubmit 属性不为false. 优点:快速,简单跳转路由. 缺点:返回数据不好处理,前后台交互繁琐. <form name="mdShopuser.form" action="/ShopUser/ShopUserGoin" method="POST" autocomplete="off" o

layUI之DataTable组件V1.0(父子表管理传值/数据表格与select&amp;laydate结合等)

目录 layUI之DataTable数据表格组件V1.0 概述 一.下载与引用 二.组件功能介绍 三.父表格渲染 四.子表弹出渲染 五.父表增/删/改/查 六.其他特色功能 七.最后说点啥 layUI之DataTable数据表格组件V1.0 概述 ? 公司项目中对于表格操作的要求较多,比如"父子表格关联进行数据传递"."表格中使用select组件"."表格中使用日期控件"."表格输入格式验证"."数据表格新增(删除)

屏幕监视专家 v1.0 定时录制屏幕动画发送到指定邮箱

ScreenWatcher v1.0功能:定时录制屏幕动画发送到指定邮箱,录制的动画为gif,可指定录制多长时间.指定几点直接开始录制,完全后台运行.作者:Bluefish 下载链接: http://pan.baidu.com/s/1kVpm4ib 密码: f3qu 使用说明: ①运行目录内的“设置.bat”,或者命令行下执行 ScreenWatcher.exe -set 可进入设置,如果直接运行则开始后台工作.   建议设置好参数,测试录像成功收到邮件以后再复制到目标电脑上运行. ②发信邮箱只