使用Nodejs的Nodemailer通过163信箱发送邮件例程

首先需要安装一下nodemailer

#nmp nodemailer install --save

然后就参照官方文档的例程改写一下就行了,代码如下:

‘use strict‘;
const nodemailer = require(‘nodemailer‘);

// Generate test SMTP service account from ethereal.email
// Only needed if you don‘t have a real mail account for testing
nodemailer.createTestAccount((err, account) => {
    // create reusable transporter object using the default SMTP transport
    let transporter = nodemailer.createTransport({
        host: ‘smtp.163.com‘,
        port: 465,
        secure: true, // true for 465, false for other ports
        auth: {
            user: ‘[email protected]‘, // generated ethereal user
            pass: ‘PASSWORD‘ // generated ethereal password
        }
    });

    // setup email data with unicode symbols
    let mailOptions = {
        from: ‘[email protected]‘, // sender address
        to: ‘[email protected],[email protected]‘, // list of receivers
        subject: ‘标题:这是一封来自Nodejs发送的邮件‘, // Subject line
        text: ‘你好吗?‘, // plain text body
        html: ‘<b>北京欢迎你</b>‘ // html body
    };

    // send mail with defined transport object
    transporter.sendMail(mailOptions, (error, info) => {
        if (error) {
            return console.log(error);
        }
        console.log(‘Message sent: %s‘, info.messageId);
        // Preview only available when sending through an Ethereal account
        console.log(‘Preview URL: %s‘, nodemailer.getTestMessageUrl(info));

        // Message sent: <[email protected]>
        // Preview URL: https://ethereal.email/message/WaQKMgKddxQDoou...
    });
});

赘述一下:nodemailer的官网在 https://nodemailer.com/about/ ,一般看原文比网文靠谱。

原文地址:https://www.cnblogs.com/xiandedanteng/p/8642833.html

时间: 2024-10-17 04:39:31

使用Nodejs的Nodemailer通过163信箱发送邮件例程的相关文章

关于java使用网易服务器smtp.163.com发送邮件,连接失败的问题

最近在写一个注册成功时,需要邮件激活的web注册功能,所以选用了网易服务器smtp.163.com作为服务器主机来向注册用户发送邮件.在调试的过程中老碰到连接失败的异常(因为弄好了,忘了复制下异常信息了,所以没有). 整个调试过程,我连配置文件都检测了好几遍,代码也看了几遍.没办法还是调试不出来.那么现在我说一下用网易的服务器smtp.163.com发送邮件的几个非代码关键点: 1.注册163邮箱,启动smtp.163.com服务器(注册登录进去,在设置里面,根据它的提示启动服务器) 2.163

app里使用163邮箱发送邮件,被163认为是垃圾邮件的坑爹经历!_ !

最近有个项目,要发邮件给用户设定的邮箱报警,然后就用了163邮箱,代码是网上借来的^^,如下: package com.smartdoorbell.util; import android.os.AsyncTask; import java.util.Date; import java.util.List; import java.util.Properties; import javax.activation.CommandMap; import javax.activation.Mailca

phpmailer使用163邮件发送邮件例子

注意:如果你的服务器安装了卖咖啡并且开户病毒最大防护功能我们需要关闭一个邮件防护哦,否则你的邮件发不出去给被这款杀毒给拦截哦. 1. 使用gmail发送的脚本 代码如下 复制代码 include("class.phpmailer.php");include("class.smtp.php");//获取一个外部文件的内容$mail = new PHPMailer();$body = file_get_contents('contents.html');$body =

CentOS7像外部163邮箱发送邮件

我们在运维过程中,为了随时了解服务器的工作状态,出现问题随时提醒,像个人邮箱发送邮件是必须的,但是刚刚安装好的系统是无法发送邮件的.需要们进行一些配置和程序的安装,我安装完系统后,自带mail12.5,依然无法外发邮件. 第一步,安装sendmail,和sendmail-cf 使用命令: yum install -y sendmail yum install -y sendmail-cf yum源安装是最方便的安装,自动解决依赖关系. 第二步,配置sendmail.mc 文件 vi /etc/m

Linux配置163邮箱发送邮件

利用163邮箱简单的发送邮件,下面记录配置步骤,仅仅记录要点步骤.`` 申请163邮箱,开通客户端授权码以后,客户端可以利用这个授权码发送邮件.不需要繁琐的验证机制. 将配置信息添加到/etc/mail.rc文件末尾.send emailset [email protected]set smtp=smtp.163.com:25set smtp-auth=login授权用户set [email protected]授权密码set smtp-auth-password=123456zrj忽略验证se

centos 7 postfix配置163邮箱发送邮件

[[email protected] .certs]# vim /etc/mail.rc #修改配置文件,最后面添加即可 set [email protected] set smtp.163.com set smtp-auth-user=wcczcl set smtp-auth-password=1454545 set smtp-auth=login set smtp-use-starttls set ssl-verify=ignore set nss-config-dir=/etc/pki/n

php使用163邮箱发送邮件

email.class.php文件 <? class smtp { /* Public Variables */ var $smtp_port; var $time_out; var $host_name; var $log_file; var $relay_host; var $debug; var $auth; var $user; var $pass; /* Private Variables */ var $sock; /* Constractor */ function smtp($r

5、Selenium+Python自动登录163邮箱发送邮件

1.Selenium实现自动化,需要定位元素,以下查看163邮箱的登录元素 (1)登录(定位到登录框,登录框是一个iframe,如果没有定位到iframe,是无法定位到账号框与密码框) 定位到邮箱框(name='email') 定位到密码框(name='password') 定位到登录按钮(id="dologin") 2.代码实现 #coding=utf-8 import time from selenium import webdriver broswer = webdriver.I

G. PHP发送邮件功能实现(使用163邮箱)

第一步 我用的是163邮箱发送邮件,做一个尝试,在尝试之前,需要要开启163邮箱的授权码如图所示,请记住您的授权码,将在之后的步骤中用到 第二步 需要下载一个类PHPMailer,我有这个资源已经上传了,免费的哦亲,连接在这http://download.csdn.NET/detail/s371795639/9693417 下载后,解压后此文件夹放在Vendor目录下,Vendor目录下有个PHPMailer文件夹,那就对了~ 第三步 咱们该写代码了 html代码: <body> <fo