有梦就能实现 2019-11-09
本文实例讲述了PHP发送邮件确认验证注册功能。分享给大家供大家参考,具体如下:
类库:
require "class.phpmailer.php"; require "class.smtp.php"; class PHP_Mailer { protected $mail; public function __construct() { $mail = new PHPMailer; $mail->SMTPDebug = 3; $mail->isSMTP(); $mail->SMTPAuth = true; $mail->isHTML(true); $CI =& get_instance(); $CI->load->config('email_config'); $email = $CI->config->item('email'); foreach ($email as $key => $value) { $mail->$key = $value; } $this->mail = $mail; } public function check_user($email,$nick,$txt,$id) { $this->mail->FromName = '表白墙'; $this->mail->addAddress("$email"); // Add a recipient $this->mail->addReplyTo('[email protected]', '表白墙反馈'); $this->mail->Subject = '表白墙通知'; $this->mail->CharSet = "UTF-8"; $this->mail->Body = <<<body <p>你好:测试邮件 body; $this->mail->AltBody = <<<altbody 你好: 有一个altbody说:谢谢许愿墙的程序员 敬上! altbody; if ($this->mail->send()) { returntrue; } elsereturnfalse; } }
调用
$this->load->library('email/php_mailer'); $result = $this->php_mailer->check_user('[email protected]', 'aaa', '$row->txt', '$row->id'); if ($result == true) { //更新状态 echo 'ok'; }
待完善接收邮件验证的功能
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP网络编程技巧总结》、《PHP基本语法入门教程》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《PHP运算与运算符用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
<?php. if (!empty($_POST)) {. $data1 = $_POST["data1"];$data2 = $_POST["data2"];$fuhao = $_POST["fuh