我正在尝试从Firebase云功能使用Mailgun的api发送电子邮件。我曾尝试在Cloud Function中实现相同的nodejs教程,但是我总是收到“错误:无法处理请求”。请我做错了什么。
下面的云功能代码:
<pre>
<code>
var functions = require('firebase-functions');
var nodemailer = require('nodemailer');
var auth = {
auth: {
api_key: '###################',
domain: 's###############g'
}
}
exports.helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!");
});
var nodemailerMailgun = nodemailer.createTransport(auth);
exports.sendEmail = functions.https.onRequest((request, response) =>{
//app.get('/', function(req, res) {
test();
});
function test(){
const mailOptions = {
//Specify email data
from: "[email protected]",
//The email to contact
to: "[email protected]",
//Subject and text data
subject: 'Hello from Mailgun',
text: 'Hello, This is not a plain-text email, I wanted to test some spicy Mailgun sauce in NodeJS! <a href="http://0.0.0.0:3030/validate?' + req.params.mail + '">Click here to add your email address to a mailing list</a>'
};
return smtpTransport.sendMail(mailOptions).then(() => {
console.log("It works");
});
}
</pre>
感谢你的协助。
最佳答案
如@GokulKathirvel所述,只有付费帐户才能发送出站电子邮件。但是我能够证明功能仪表板中的功能。触发该功能时,您会收到以下消息:
有了这一点,您还应该能够使用 Node 包mailgun-js
做到这一点。
var functions = require('firebase-functions')
var mailgun = require('mailgun-js')({apiKey, domain})
exports.sendWelcomeEmail = functions.database.ref('users/{uid}').onWrite(event => {
// only trigger for new users [event.data.previous.exists()]
// do not trigger on delete [!event.data.exists()]
if (!event.data.exists() || event.data.previous.exists()) {
return
}
var user = event.data.val()
var {email} = user
var data = {
from: '[email protected]',
subject: 'Welcome!',
html: `<p>Welcome! ${user.name}</p>`,
'h:Reply-To': '[email protected]',
to: email
}
mailgun.messages().send(data, function (error, body) {
console.log(body)
})
})
来源https://www.automationfuel.com/firebase-functions-sending-emails/
关于node.js - 在Angle 2应用程序中从Cloud Functions for Firebase发送Mailgun电子邮件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44259405/