2024 JavaScript 联系表单 Node.js 代码示例
使用 Node、React、React Native、Koa、Express、Fastify 和 Nodemailer SMTP 创建和发送 JavaScript 联系表单。
- Search page
- Table of Contents
安装和要求
您将需要安装 nodemailer
npm 依赖:
npm install nodemailer
源代码和示例
这个例子使用 注意邮件 图书馆及其官方赞助商 转发邮件 发送和预览出站邮件。
你将需要 生成密码 发送出站邮件 - 请按照我们的 使用自定义域发送电子邮件 SMTP 指南.
// app.js
import nodemailer from 'nodemailer';
const transporter = nodemailer.createTransport({
host: 'smtp.forwardemail.net',
port: 465,
secure: true,
auth: {
// TODO: replace user
and pass
values from:
// <https://forwardemail.net/guides/send-email-with-custom-domain-smtp>
user: 'you@example.com',
pass: '****************************'
},
});
await transporter.sendMail({
from: 'you@example.com',
to: 'user@gmail.com',
subject: 'hello world',
html: '<h1>hello world</h1>'
});
运行应用程序以发送电子邮件:
node app
现在你可以去 我的帐户 → 电子邮件 查看您的实时电子邮件传送状态、电子邮件传送日志和 HTML/纯文本/附件预览。
附言🎉您还可以 在浏览器和 iOS 模拟器中预览电子邮件 和 使用 Node.js 创建电子邮件模板.