我有一个Ionic应用程序和联系表单页面(带有姓名,电子邮件和电话(。用户单击"提交"按钮后,我希望将此表单数据发送到我的电子邮件。我该怎么做?
您需要设置某种 REST api,以便当用户单击提交按钮时,联系表单中的数据将发送到您设置的 REST API,这将触发它向您发送一封包含用户消息内容的电子邮件。
由于您已经使用 Node.JS 标记了它,因此我建议您将联系表单的操作发送到类似"http://yoursite.com/sendemail/"的内容,然后您的 API 将使用以下内容处理调用:
router.route('/sendemail/')
.post(function(req, res) {
var userInput = req.body;
var message = {
text: userInput.message,
from: userInput.name + ' <' + userInput.email + '>',
to: 'youremail@email.com',
subject: userInput.subject,
attachment:
[
{data: this.text, alternative:true},
]
};
server.send(message, function(err, message) {
if(err) {
res.status(400);
console.log(err);
} else {
res.status(200)
}
});
});
(您需要更改一些变量以适合您的代码(
希望这有帮助!