使用req.body和node-cron调度电子邮件的步骤如下:
npm install express nodemailer node-cron
这将安装Express框架、Nodemailer库和Node-cron库。
const express = require('express');
const nodemailer = require('nodemailer');
const cron = require('node-cron');
const app = express();
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.post('/schedule-email', (req, res) => {
// 解析请求体中的数据
const { to, subject, text, schedule } = req.body;
// 创建一个定时任务
cron.schedule(schedule, () => {
// 创建一个Nodemailer传输对象
const transporter = nodemailer.createTransport({
service: '腾讯企业邮',
auth: {
user: 'your-email@example.com',
pass: 'your-password'
}
});
// 配置电子邮件选项
const mailOptions = {
from: 'your-email@example.com',
to: to,
subject: subject,
text: text
};
// 发送电子邮件
transporter.sendMail(mailOptions, (error, info) => {
if (error) {
console.log(error);
} else {
console.log('Email sent: ' + info.response);
}
});
});
res.send('Email scheduled successfully');
});
// 启动服务器
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
node app.js
http://localhost:3000/schedule-email
,并在请求体中包含以下数据:{
"to": "recipient@example.com",
"subject": "Scheduled Email",
"text": "This is a scheduled email",
"schedule": "*/5 * * * *"
}
其中,to
是收件人的电子邮件地址,subject
是邮件主题,text
是邮件内容,schedule
是Cron表达式,用于指定邮件发送的时间间隔。
请注意,上述代码中的邮件服务提供商为腾讯企业邮,你可以根据需要更改为其他邮件服务提供商。此外,你还需要提供有效的发件人电子邮件地址和密码。
推荐的腾讯云相关产品:腾讯企业邮、腾讯云函数(Serverless)、腾讯云API网关等。你可以在腾讯云官网上找到这些产品的详细介绍和文档。
参考链接:
领取专属 10元无门槛券
手把手带您无忧上云