Heim > php教程 > php手册 > php qq 免费企业邮箱

php qq 免费企业邮箱

WBOY
Freigeben: 2016-06-06 20:08:57
Original
1985 Leute haben es durchsucht

对于小企业来说,免费的企业邮箱是不错的选择,省去服务器费用和人员维护费用。在这里说一下,qq的免费企业邮箱。如果想搭建自己的企业邮局,请参考: centos extmail postfix nginx 安装配置详解 一,注册账号 网址:http://exmail.qq.com 注册账号,一定要

对于小企业来说,免费的企业邮箱是不错的选择,省去服务器费用和人员维护费用。在这里说一下,qq的免费企业邮箱。如果想搭建自己的企业邮局,请参考:centos extmail postfix nginx 安装配置详解

一,注册账号

网址:http://exmail.qq.com

注册账号,一定要有自己的域名。

二,添加成员

在这里有一点要注意一下,就是添加成员时,你设定的密码,利用phpmailer是不能发邮件的。要这个成员登录后,重新设定密码后,才能用phpmailer来发邮件。

三,添加dns

51yip.com.     IN      MX      5 mxbiz1.qq.com.
51yip.com.     IN      MX      10 mxbiz2.qq.com.
Nach dem Login kopieren

如果没有自己的DNS服务器,就添加二个mx记录,主机的域名不填写就行了。以dnspod为例。

mx dnspod 配置

mx dnspod 配置

四,测试的php脚本

<?php include "PHPMailer/class.phpmailer.php";
function send_mail($frommail,$tomail,$subject,$body,$ccmail,$bccmail){
    $mail = new PHPMailer();
    $mail->IsSMTP();
    $mail->SMTPDebug;
    $mail->Host = "smtp.qq.com";
    $mail->SMTPAuth = true;
    $mail->Port = 25;
    $mail->Username = "admin@51yip.com";
    $mail->Password = "******";
    $mail->AddReplyTo($frommail, 'tankzhang');
    $mail->AddAddress($tomail);
    $mail->SetFrom($frommail, 'tankzhang');
    $mail->IsHTML(true);
    $mail->Subject = $subject;
    $mail->MsgHTML($body);
    if(!$mail->Send())
    {
    echo "邮件发送失败. <p>";
    echo "错误原因: " . $mail->ErrorInfo;
    exit;
    }else{
        echo "success";
    }
}
$result= send_mail("admin@51yip.com","95219454@qq.com","test","test","","");
?></p>
Nach dem Login kopieren

来看一下效果图:

php利用qq免费企业邮局发邮件

php利用qq免费企业邮局发邮件

php qq 免费企业邮箱 对于小企业来说,免费的企业邮箱是不错的选择,省去服务器费用和人员维护费用。在这里说一下,qq的免费企业邮箱。如果想搭建自己的企业邮局,请参考:centos extmail postfix nginx 安装配置详解 一,注册账号 网址:http://exmail.qq.com 注册账号,一定要有自己的域名。 二,添加成员 在这里有一点要注意一下,就是添加成员时,你设定的密码,利用phpmailer是不能发邮件的。要这个成员登录后,重新设定密码后,才能用phpmailer来发邮件。 三,添加dns 51yip.com. IN MX 5 mxbiz1.qq.com. 51yip.com. IN MX 10 mxbiz2.qq.com. 如果没有自己的DNS服务器,就添加二个mx记录,主机的域名不填写就行了。以dnspod为例。 四,测试的php脚本 IsSMTP(); [...]php qq 免费企业邮箱
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Empfehlungen
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage