Home  >  Article  >  Backend Development  >  Zend_Mail of Zend Framework implements the verification function of sending email and solves the problem of garbled title, zendzend_mail_PHP tutorial

Zend_Mail of Zend Framework implements the verification function of sending email and solves the problem of garbled title, zendzend_mail_PHP tutorial

WBOY
WBOYOriginal
2016-07-12 08:56:10812browse

Zend_Mail of the Zend Framework framework implements the verification function of sending emails and solves the method of garbled title, zendzend_mail

This article describes the example of Zend_Mail of the Zend Framework framework to implement the verification function of sending emails and How to solve the garbled title. Share it with everyone for your reference, the details are as follows:

The Zend_Mail component in Zend Framework is very convenient to use. It provides a universal way to write and send emails with text content. Of course, it is also compatible with the function of multiple multi-segment email messages of the MIME standard. Zend_Mail We can send our emails via the default Zend_Mail_Transport_SendMail transport or via Zend_Mail_Transport_Smtp.

Zend_Mail is the simplest email function. Send it through Zend_Mail_Transport_Sendmail. We only need to specify a recipient, a subject, an email content and a sender of the email. Its code is as follows (with comments: ):

<&#63;php
require_once 'Zend/Mail.php';
$mail = new Zend_Mail("UTF-8");//设置邮件编码
$mail->setBodyText('你的邮件内容放在这里!.') //发送电子邮件地址以及一些发送人的说明信息
->setFrom('fromemail@example.com', '发送人的说明信息') //收信人电子邮件地址以及一些收信人的说明信息
->addTo('toemail@example.com', '收信人的说明信息') //电子邮件标题,解决乱码
->setSubject("=&#63;UTF-8&#63;B&#63;".base64_encode('电子邮件标题')."&#63;=")  ->send();
&#63;>

The other is to send emails through SMTP. But you need to configure your mail server. You can go to GOOGLE for this step. I won’t say more here. I can use GOOGLE to send emails here. After my test, my emails were sent to my Gmail and 163 (NetEase) mailboxes without any problem. The garbled code problem was also solved. The title length limit problem did not appear either. I used to refer to it online. Changed the functions in Zend_Mail. Now using Zend Framework version 1.6, there seems to be no such problem. I think the ZF team has changed the BUG in it... Haha..

The following is the code of your own implementation:

<&#63;php
require_once ROOT_PATH . '/Zend/Mail.php';
require_once ROOT_PATH . '/Zend/Mail/Transport/Smtp.php';
$mail = new Zend_Mail("UTF-8");//设置邮件编码
$config = array(
 'auth'=>'login', 'username'=>"kylingood",//电子件用户名
 'password'=>"这里是填写你电子邮件密码",
 'ssl'=>"ssl"
);
$transport = new Zend_Mail_Transport_Smtp('smtp.gmail.com',$config);
$mail->setDefaultTransport($transport);
$mailcontent='欢迎您的到来!<br /> 您的注册名为:
'.$thisArray ['username'].'<br /> 您的密码为:'.$thisArray ['userpass'].'
<br /> 请您点击这里的地址:<a href="#"><font color="red">激活
</font> </a>您的帐号!
请尽快删除此邮件,以免别人偷看到您的密码<br /> 如果忘了密码,
可以到社区写信请管理员重新设定<br />';
$mail->setBodyHtml($mailcontent);//可以发送HTML的邮件.真方便! 
$mail->setFrom('kylingood@gmail.com', 'kylingood');
$mail->addTo($email, 'kylingood'); $title=$thisArray ['username'].',用户您好,这是网站激活验证邮件!';
$mail->setSubject("=&#63;UTF-8&#63;B&#63;".base64_encode($title)."&#63;=");
$mail->send();
&#63;>

Okay.. This is basically the principle of using Zend_Mail to send emails. Of course, there are more advanced uses. For example, sending email attachments..Sending multiple emails at once. There are also ways to use different Transport object to send different emails... You can refer to the ZF manual to do it... I hope everyone can communicate more..

Readers who are interested in more zend-related content can check out the special topics of this site: "Zend FrameWork Framework Introductory Tutorial", "php Excellent Development Framework Summary", "Yii Framework Introduction and Summary of Common Techniques", "ThinkPHP Introductory Tutorial" , "php object-oriented programming introductory tutorial", "php mysql database operation introductory tutorial" and "php common database operation skills summary"

I hope this article will be helpful to everyone’s PHP programming based on the Zend Framework framework.

Articles you may be interested in:

  • Zend Framework smarty usage examples detailed explanation
  • Zend Framework implements Zend_View integrated Smarty template system method
  • Zend Framework framework Routing mechanism code analysis
  • Zend Framework implements guestbook paging function (with demo source code download)
  • Zend Framework implements guestbook with basic functions (with demo source code download)
  • Zend Framework implements the method of storing session in memcache
  • Detailed explanation of usage of Zend Framework paging class
  • Zend Framework generates verification code and implements verification code verification function (with demo source code download)
  • Zend Framework tutorial's Zend_Form component implements form submission and displays error prompts
  • Zend Framework implements multiple file upload function examples
  • Environment configuration for getting started with Zend Framework and the first Hello World example (Attached demo source code download)
  • A summary of Zend Framework entry-level knowledge points
  • A simple example of Zend Framework Cache usage
  • Zend Framework Smarty extension implementation method

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1113735.htmlTechArticleZend Framework's Zend_Mail implements the verification function of sending email and solves the method of garbled title, zendzend_mail This article tells the example of Zend Framework's Zend_Mail implements sending E...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn