電子メールを送信する機能を持つノードjsでアプリケーションを開発しています。私はSMTPのユーザー名とパスワードが必要です。しかし、私はそれを得ることができる場所を見つけることができません。私は、操作を行うために、次のコードを使用していますノードjsでメールを送信するSMTP資格情報を表示する方法
var nodemailer = require('nodemailer');
var transporter = nodemailer.createTransport('smtps://user%40gmail.com:[email protected]');
var mailOptions = {
from: '[email protected]',
to: '[email protected]',
subject: 'Hello ✔',
text: 'Hello world ',
html: '<b>Hello world </b>'
};
transporter.sendMail(mailOptions, function(error, info){
if(error){
return console.log(error);
}
console.log('Message sent: ' + info.response);
});
だから誰でも私は電子メールを送信するSMTP資格情報を表示するのを助けることができます。あなたはちょうどあなたの電子メールのユーザー名とuser
を交換し、電子メールのパスワードでpass
を置き換えるコード
var transporter = nodemailer.createTransport('smtps://user%40gmail.com:[email protected]');
のこの行で、資格情報を入力する必要があり、事前
可能な複製を(http://stackoverflow.com/questions/26948516/nodemailer-invalid-login ) –
自分のIDとパスワード。 –
返信いただきありがとうございます。 – kumaranc