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

}



}
  • 2020-12-12 17:43:33

    linux docker部署gitlab-ce

    首先需要从docker镜像仓库当中获取gitlab-ce的最新镜像文件,由于我本机已经获取了该镜像,所以在此获取的时候会给如下提示。

  • 2020-12-13 19:44:07

    运行中的docker实例添加-v挂载文件夹

    之前有人问我Docker容器启动之后还能否再挂载卷,考虑到mnt命名空间的工作原理,我一开始认为这很难实现。不过现在Petazzoni通过使用nsenter和绑定挂载实现了这个需求,你可以在你的环境中测试下。

  • 2020-12-13 19:49:32

    Docker run命令详解

    命令格式:docker run [OPTIONS] IMAGE [COMMAND] [ARG...] Usage: Run a command in a new container 中文意思为:通过run命令创建一个新的容器(container)

  • 2020-12-13 20:15:43

    解决gitlab限制上传文件大小的问题

    服务端的限制有两个地方一个是gitlab本身,另外一个是gitlab使用的nginx。 gitlab本身也是很好解决的,使用管理员用户登录gitlab在设置Account and limit中加大Maximum attachment size (MB)和Maximum push size (MB)即可解决 nginx的话修改gitlab.rb这个文件中

  • 2020-12-14 15:06:50

    youtube-dl视频下载神器

    youtube-dl 是一款命令行下的视频下载工具,看着名称像是 YouTube 下载工具,其实这款工具不仅支持 YouTube ,还支持非常多的视频网站,比如优酷、爱奇艺、 bilibili 等,在写这篇日志的时候,暂时不支持腾讯视频。