nodemailer发送邮件各个服务器接口

2018-11-19 15:14:06

来自:https://github.com/nodemailer/nodemailer-wellknown/blob/master/services.json#L125

{

"1und1": {

"host": "smtp.1und1.de",

"port": 465,

"secure": true,

"authMethod": "LOGIN"

},



"AOL": {

"domains": [

"aol.com"

],

"host": "smtp.aol.com",

"port": 587

},



"DebugMail": {

"host": "debugmail.io",

"port": 25

},



"DynectEmail": {

"aliases": ["Dynect"],

"host": "smtp.dynect.net",

"port": 25

},



"FastMail": {

"domains": [

"fastmail.fm"

],

"host": "mail.messagingengine.com",

"port": 465,

"secure": true

},



"GandiMail": {

"aliases": [

"Gandi",

"Gandi Mail"

],

"host": "mail.gandi.net",

"port": 587

},



"Gmail": {

"aliases": [

"Google Mail"

],

"domains": [

"gmail.com",

"googlemail.com"

],

"host": "smtp.gmail.com",

"port": 465,

"secure": true

},



"Godaddy": {

"host": "smtpout.secureserver.net",

"port": 25

},



"GodaddyAsia": {

"host": "smtp.asia.secureserver.net",

"port": 25

},



"GodaddyEurope": {

"host": "smtp.europe.secureserver.net",

"port": 25

},



"hot.ee": {

"host": "mail.hot.ee"

},



"Hotmail": {

"aliases": [

"Outlook",

"Outlook.com",

"Hotmail.com"

],

"domains": [

"hotmail.com",

"outlook.com"

],

"host": "smtp.live.com",

"port": 587,

"tls": {

"ciphers": "SSLv3"

}

},



"iCloud": {

"aliases": ["Me", "Mac"],

"domains": [

"me.com",

"mac.com"

],

"host": "smtp.mail.me.com",

"port": 587

},



"mail.ee": {

"host": "smtp.mail.ee"

},



"Mail.ru": {

"host": "smtp.mail.ru",

"port": 465,

"secure": true

},



"Maildev": {

"port": 1025,

"ignoreTLS": true

},



"Mailgun": {

"host": "smtp.mailgun.org",

"port": 587

},



"Mailjet": {

"host": "in.mailjet.com",

"port": 587

},



"Mandrill": {

"host": "smtp.mandrillapp.com",

"port": 587

},



"Naver": {

"host": "smtp.naver.com",

"port": 587

},



"OpenMailBox": {

"aliases": [

"OMB",

"openmailbox.org"

],

"host": "smtp.openmailbox.org",

"port": 465,

"secure": true

},



"Outlook365": {

"host": "smtp.office365.com",

"port": 587,

"secure": false

},



"Pepipost": {

"aliases": ["Pepipost"],

"host": "smtp.pepipost.com",

"port": 2525

},



"Postmark": {

"aliases": ["PostmarkApp"],

"host": "smtp.postmarkapp.com",

"port": 2525

},



"QQ": {

"domains": [

"qq.com"

],

"host": "smtp.qq.com",

"port": 465,

"secure": true

},



"QQex": {

"aliases": ["QQ Enterprise"],

"domains": [

"exmail.qq.com"

],

"host": "smtp.exmail.qq.com",

"port": 465,

"secure": true

},



"SendCloud": {

"host": "smtpcloud.sohu.com",

"port": 25

},



"SendGrid": {

"host": "smtp.sendgrid.net",

"port": 587

},



"SendinBlue": {

"host": "smtp-relay.sendinblue.com",

"port": 587

},



"SES": {

"host": "email-smtp.us-east-1.amazonaws.com",

"port": 465,

"secure": true

},

"SES-US-EAST-1": {

"host": "email-smtp.us-east-1.amazonaws.com",

"port": 465,

"secure": true

},

"SES-US-WEST-2": {

"host": "email-smtp.us-west-2.amazonaws.com",

"port": 465,

"secure": true

},

"SES-EU-WEST-1": {

"host": "email-smtp.eu-west-1.amazonaws.com",

"port": 465,

"secure": true

},





"Sparkpost": {

"aliases": [

"SparkPost",

"SparkPost Mail"

],

"domains": [

"sparkpost.com"

],

"host": "smtp.sparkpostmail.com",

"port": 587,

"secure": false

},



"Yahoo": {

"domains": [

"yahoo.com"

],

"host": "smtp.mail.yahoo.com",

"port": 465,

"secure": true

},



"Yandex": {

"domains": [

"yandex.ru"

],

"host": "smtp.yandex.ru",

"port": 465,

"secure": true

},



"Zoho": {

"host": "smtp.zoho.com",

"port": 465,

"secure": true,

"authMethod": "LOGIN"

},

"126": {

"host": "smtp.126.com",

"port": 465,

"secure": true

},

"163": {

"host": "smtp.163.com",

"port": 465,

"secure": true

}



}
  • 2017-04-16 21:02:55

    ImageView的android:adjustViewBounds属性

    取值为true时: Adjust the ImageView's bounds to preserve the aspect ration of its drawable. 调整ImageView的界限来保持图像纵横比不变。 这并不意味着ImageView的纵横比就一定和图像的纵横比相同

  • 2017-04-18 17:12:50

    Laravel 读取 config 下的数据

    Laravel的config下一般存放配置信息,可以通过config('key')方法获取指定的数据。 设置值可通过「点」式语法读取,其中包含要访问的文件名以及选项名称。

  • 2017-04-26 16:43:03

    php对象和数组相互转换的方法

    这篇文章主要介绍了php对象和数组相互转换的方法,通过两个自定义函数实现对象与数组的相互转换功能,非常简单实用,需要的朋友可以参考下

  • 2017-04-26 22:59:15

    百度编辑器Ueditor的黑白名单过滤

    黑白名单配置。UEditor针对进入编辑器的富文本内容提供了节点级别的过滤,可以通过该配置的修改来达到控制富文本内容的目的

  • 2017-04-26 23:30:58

    PHP中session变量的销毁

    本篇文章主要是对PHP中session变量的销毁进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助

  • 2017-05-02 17:51:44

    php生成不重复随机字符串

    使用时间戳作为原始字符串,再随机生成五个字符随机插入任意位置,生成新的字符串,保证不重复

  • 2017-05-02 17:54:57

    高并发 php uniqid 不重复唯一标识符生成方案

    PHP uniqid()函数可用于生成不重复的唯一标识符,该函数基于微秒级当前时间戳。在高并发或者间隔时长极短(如循环代码)的情况下,会出现大量重复数据。即使使用了第二个参数,也会重复,最好的方案是结合md5函数来生成唯一ID。