Maison > php教程 > php手册 > le corps du texte

PHP:在Yii Framework中扩展使用PHPMailer发送邮件

WBOY
Libérer: 2016-06-06 19:41:44
original
916 Les gens l'ont consulté

首先,你得去Yii官方下载mailer扩展组件, 官方扩展链接: http://www.yiiframework.com/extension/mailer/。 由于PHPMailer是不断更新并且针对PHP不同版本也有对应的版本,你可以根据需要,可以去PHPMailer官网下载所需要的版本,然后把mailer文件夹下的php

   首先,你得去Yii官方下载mailer扩展组件,官方扩展链接:http://www.yiiframework.com/extension/mailer/。

      由于PHPMailer是不断更新并且针对PHP不同版本也有对应的版本,你可以根据需要,可以去PHPMailer官网下载所需要的版本,然后把mailer文件夹下的phpmailer文件夹中的内容替换了。


这个扩展配置十分方便,如果有问题的话,可以打开Debug:
<?php $message = 'Hello World!';
$mailer = Yii::createComponent('application.extensions.mailer.EMailer');
$mailer->Host = <your smtp host>;
$mailer->IsSMTP();
$mailer->From = 'wei@example.com';
$mailer->AddReplyTo('wei@example.com');
$mailer->AddAddress('qiang@example.com');
$mailer->FromName = 'Wei Yard';
$mailer->SMTPDebug = true;   //设置SMTPDebug为true,就可以打开Debug功能,根据提示去修改配置
$mailer->CharSet = 'UTF-8';
$mailer->Subject = Yii::t('demo', 'Yii rulez!');
$mailer->Body = $message;
$mailer->Send();
?></your>
Copier après la connexion



因为我使用163邮箱作为发件地址,这个邮件服务是需要验证功能的。必须输入用户名和密码才能发送成功!
<?php $mailer = Yii::createComponent('application.extensions.mailer.EMailer');
$mailer->Host = 'smtp.163.com';
$mailer->IsSMTP();
$mailer->SMTPAuth = true;
$mailer->From = 'from@163.com';
$mailer->AddReplyTo('from@163.com');
$mailer->AddAddress('to@qq.com');
$mailer->FromName = myName';
$mailer->Username = 'username';    //这里输入发件地址的用户名
$mailer->Password = 'password';    //这里输入发件地址的密码
$mailer->SMTPDebug = true;   //设置SMTPDebug为true,就可以打开Debug功能,根据提示去修改配置
$mailer->CharSet = 'UTF-8';
$mailer->Subject = 'subject 主题';
$mailer->Body = 'body 内容';
$mailer->AddAttachment( $this->getAssertUrl().'/emailAttach/csdn-500.png', 'CSDN_500.png' );
if ($mailer->Send()) {
  echo 'send ok!';
} else {
  echo "send error!";
}
?>
Copier après la connexion

如果大家使用的服务器没有安装邮件服务器的话,我们可以使用这种方法去发送邮件!


Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!