我试图在/emails
中写入任何内容时向我的电子邮件发送测试电子邮件,但电子邮件永远不会被发送且功能日志为空。
exports.sendTestEmail = functions.database.ref('/emails')
.onWrite(event => {
return sendTestEmail('myemail@gmail.com');
})
// [END onWrite]
// Sends a welcome email to the given user.
function sendTestEmail(email) {
const mailOptions = {
from: `${APP_NAME} <noreply@example.com>`,
to: email
};
// The user subscribed to the newsletter.
mailOptions.subject = `Welcome to ${APP_NAME}!`;
mailOptions.text = `Hey there! Welcome to ${APP_NAME}. I hope you will enjoy our service.`;
return mailTransport.sendMail(mailOptions).then(() => {
console.log('New welcome email sent to:', email);
});
}
编辑***
以上代码有效。我试图在emails
上触发该功能,而正确的名称为email
。
答案 0 :(得分:4)
使用Firebase云功能正确发送电子邮件的方式!
exports.sendTestEmail = functions.database.ref('/emails')
.onWrite(event => {
return sendTestEmail('myemail@gmail.com');
})
// [END onWrite]
// Sends a welcome email to the given user.
function sendTestEmail(email) {
const mailOptions = {
from: `${APP_NAME} <noreply@example.com>`,
to: email
};
// The user subscribed to the newsletter.
mailOptions.subject = `Welcome to ${APP_NAME}!`;
mailOptions.text = `Hey there! Welcome to ${APP_NAME}. I hope you will enjoy our service.`;
return mailTransport.sendMail(mailOptions).then(() => {
console.log('New welcome email sent to:', email);
});
}