热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

php表单发送到邮箱V1.0

html表单代码:index.

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>

<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 = "在线预约提醒
姓名:".$name."
联系方式:".$tel."
留言:".$des."
提交URL:".$url."
提交时间:".date(‘Y-m-d H:i:s‘,time())."
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 ""; } echo ""; ?>
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 "
"; //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 . [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("/^.+@([^@]+)$/", "\\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 (!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 (!@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."
"; } } 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表单发送到邮箱V1.0


推荐阅读
  • 本文介绍了OC学习笔记中的@property和@synthesize,包括属性的定义和合成的使用方法。通过示例代码详细讲解了@property和@synthesize的作用和用法。 ... [详细]
  • 在说Hibernate映射前,我们先来了解下对象关系映射ORM。ORM的实现思想就是将关系数据库中表的数据映射成对象,以对象的形式展现。这样开发人员就可以把对数据库的操作转化为对 ... [详细]
  • 1,关于死锁的理解死锁,我们可以简单的理解为是两个线程同时使用同一资源,两个线程又得不到相应的资源而造成永无相互等待的情况。 2,模拟死锁背景介绍:我们创建一个朋友 ... [详细]
  • 在project.properties添加#Projecttarget.targetandroid-19android.library.reference.1..Sliding ... [详细]
  • 本文介绍了lua语言中闭包的特性及其在模式匹配、日期处理、编译和模块化等方面的应用。lua中的闭包是严格遵循词法定界的第一类值,函数可以作为变量自由传递,也可以作为参数传递给其他函数。这些特性使得lua语言具有极大的灵活性,为程序开发带来了便利。 ... [详细]
  • GetWindowLong函数
    今天在看一个代码里头写了GetWindowLong(hwnd,0),我当时就有点费解,靠,上网搜索函数原型说明,死活找不到第 ... [详细]
  • 基于layUI的图片上传前预览功能的2种实现方式
    本文介绍了基于layUI的图片上传前预览功能的两种实现方式:一种是使用blob+FileReader,另一种是使用layUI自带的参数。通过选择文件后点击文件名,在页面中间弹窗内预览图片。其中,layUI自带的参数实现了图片预览功能。该功能依赖于layUI的上传模块,并使用了blob和FileReader来读取本地文件并获取图像的base64编码。点击文件名时会执行See()函数。摘要长度为169字。 ... [详细]
  • 本文介绍了使用Java实现大数乘法的分治算法,包括输入数据的处理、普通大数乘法的结果和Karatsuba大数乘法的结果。通过改变long类型可以适应不同范围的大数乘法计算。 ... [详细]
  • HDU 2372 El Dorado(DP)的最长上升子序列长度求解方法
    本文介绍了解决HDU 2372 El Dorado问题的一种动态规划方法,通过循环k的方式求解最长上升子序列的长度。具体实现过程包括初始化dp数组、读取数列、计算最长上升子序列长度等步骤。 ... [详细]
  • Mac OS 升级到11.2.2 Eclipse打不开了,报错Failed to create the Java Virtual Machine
    本文介绍了在Mac OS升级到11.2.2版本后,使用Eclipse打开时出现报错Failed to create the Java Virtual Machine的问题,并提供了解决方法。 ... [详细]
  • 本文讲述了作者通过点火测试男友的性格和承受能力,以考验婚姻问题。作者故意不安慰男友并再次点火,观察他的反应。这个行为是善意的玩人,旨在了解男友的性格和避免婚姻问题。 ... [详细]
  • 动态规划算法的基本步骤及最长递增子序列问题详解
    本文详细介绍了动态规划算法的基本步骤,包括划分阶段、选择状态、决策和状态转移方程,并以最长递增子序列问题为例进行了详细解析。动态规划算法的有效性依赖于问题本身所具有的最优子结构性质和子问题重叠性质。通过将子问题的解保存在一个表中,在以后尽可能多地利用这些子问题的解,从而提高算法的效率。 ... [详细]
  • Java验证码——kaptcha的使用配置及样式
    本文介绍了如何使用kaptcha库来实现Java验证码的配置和样式设置,包括pom.xml的依赖配置和web.xml中servlet的配置。 ... [详细]
  • 高质量SQL书写的30条建议
    本文提供了30条关于优化SQL的建议,包括避免使用select *,使用具体字段,以及使用limit 1等。这些建议是基于实际开发经验总结出来的,旨在帮助读者优化SQL查询。 ... [详细]
  • 本文介绍了指针的概念以及在函数调用时使用指针作为参数的情况。指针存放的是变量的地址,通过指针可以修改指针所指的变量的值。然而,如果想要修改指针的指向,就需要使用指针的引用。文章还通过一个简单的示例代码解释了指针的引用的使用方法,并思考了在修改指针的指向后,取指针的输出结果。 ... [详细]
author-avatar
zjjj-jz政
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有