How to implement binding mailbox in phpmailer
This article mainly introduces the implementation method of phpmailer binding mailbox. It analyzes the configuration, function implementation and related operation skills of phpmailer binding mailbox in detail in the form of examples. Friends in need can refer to the following
The effect is as follows:
1. Configuration
<?php return array ( 'email_host' => 'smtp.aliyun.com', 'email_port' => '25', 'email_username' => 'diandodo@aliyun.com', 'email_password' => 'xxxxxx', 'email_from' => 'diandodo@aliyun.com', 'email_fromname' => '点多多', 'email_subject' => '助店宝商户激活邮箱', 'email_body' => "尊敬的用户{$username}您好: 您的激活码为<font color='red'>{$code}</font>,请将激活码输入进行验证! 激活码有效期为6分钟^_^", );
2. Send function
// 发送邮件 private function _sendEmail($email,$code,$username = '') { import('@.ORG.phpmailer'); $mail = new PHPMailer(); //建立邮件发送类,类名不一定与引入的文件名相同 $mail->CharSet = "UTF-8"; $mail->IsSMTP(); // 使用SMTP方式发送 $mail->Host = C('email_host'); // 您的企业邮局域名 $mail->SMTPAuth = true; // 启用SMTP验证功能 $mail->Username = C('email_username'); // 邮局用户名(请填写完整的email地址) $mail->Password = C('email_password'); // 邮局密码 $mail->Port=C('email_port'); $mail->From = C('email_from'); //邮件发送者email地址 $mail->FromName = C('email_fromname'); $mail->AddAddress("$email", "$username"); $mail->IsHTML(true); // set email format to HTML //是否使用HTML格式 $mail->Subject = C('email_subject'); //邮件标题 $email_body = "尊敬的用户<strong>{$username}</strong>您好: 您的激活码为<font color='red'>{$code}</font>,请将激活码输入进行验证! 激活码有效期为6分钟^_^"; $mail->Body = $email_body; //邮件内容,上面设置HTML,则可以是HTML if(!$mail->Send()) { return array('status'=>2,'info'=>$mail->ErrorInfo); } else { return array('status'=>1,'info'=>'发送成功');; } }
3. Generate a verification code and save it in the session, and send
// 发送邮箱激活码 public function sendActivationcode() { session($this->activationtime, null); $activationtime = session($this->activationtime); $email = $this->_post('email', 'trim'); if (IS_AJAX && (!$activationtime || time() > $activationtime)) { $activationcode = rand(1000, 9999); $res = $this->_sendEmail($email,$activationcode,$this->user['username']); if($res['status'] == 1) { //设置发送限制时间 session($this->activationtime, time() + 50); session($this->activationcode, array('code' => $activationcode, 'time' => time() + 600)); $this->ajaxReturn(array('result' => true)); } else { //发送失败写入日志文件 $log = date('Y-m-d H:i:s') . " 发送失败:{$res['info']}" . PHP_EOL; file_put_contents(RUNTIME_PATH . 'Log/activationcode.log', $log, FILE_APPEND); $this->ajaxReturn(array('result' => false, 'error' => $res['info'])); } } else { $this->ajaxReturn(array('result' => false, 'error' => '错误的请求')); } }
4. Verify and bind
// 绑定邮箱 public function bind_email() { if (IS_POST) { // 获取验证码 $activationcode = $this->_post('activationcode','trim'); $email = $this->_post('email','trim'); $session_activationcode = session($this->activationcode); if (time() > $session_activationcode['time'] || $activationcode != $session_activationcode['code']) { $this->error('验证码有误'); } else { M('User')->where(array('id'=>$this->user['id']))->save(array('email'=>$email)); $this->success('绑定成功',U('Account/my')); } } else { $this->display(); } }
The above is the entire content of this article, I hope it will be helpful to everyone's learning.
Related recommendations:
phpMethod to implement regular rules to determine whether it is a legal ID number
phpUse eval to implement the calculation formula of string format
PHP implements random acquisition of unblocked data on WeChat domain name
The above is the detailed content of How to implement binding mailbox in phpmailer. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.
