JavaScript Contact Forms Node.js - Tutorial 2026
使用 Node、React、React Native、Koa、Express、Fastify 和 Nodemailer SMTP 创建并发送 JavaScript 联系表单。
作者
Tiamati Email 团队
发布
3/1/26
阅读时间
不到5分钟
安装和要求
您需要安装 nodemailer npm 依赖:
npm install nodemailer
源代码和示例
此示例使用 Nodemailer 库及其官方赞助商 Forward Email 来发送和预览外发邮件。
您需要 生成密码 来发送外发邮件 – 请参阅我们的 使用自定义域 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/纯文本/附件预览。
P.S. 🎉 您还可以 在浏览器和 iOS 模拟器中预览邮件 以及 使用 Node.js 创建邮件模板。