ตัวอย่างโค้ดส่งอีเมลตอบกลับใน 2024
ส่งอีเมลเว็บแอป React ด้วยเทมเพลต HTML, CSS และ JSX, ตัวอย่าง และการรวมระบบที่พร้อมสำหรับการผลิต SMTP
- Search page
- Table of Contents
การติดตั้งและข้อกำหนด
คุณจะต้องติดตั้ง @react-email/render
และ nodemailer
การพึ่งพา npm:
npm install @react-email/render nodemailer
ซอร์สโค้ดและตัวอย่าง
สร้างเทมเพลตอีเมลของคุณด้วย a .jsx
หรือ ก .js
ไฟล์:
// email.jsx
import * as React from 'react';
import { Html } from '@react-email/html';
import { Button } from '@react-email/button';
export function Email(props) {
const { url } = props;
return (
<Html lang="en">
<Button href={url}>Visit our website</Button>
</Html>
);
}
ในตัวอย่างนี้ เราใช้ หมายเหตุจดหมาย ห้องสมุดและผู้สนับสนุนอย่างเป็นทางการ ส่งต่ออีเมล เพื่อส่งและดูตัวอย่างจดหมายขาออก
คุณจะต้อง สร้างรหัสผ่าน เพื่อส่งจดหมายขาออก – โปรดติดตามของเรา ส่งอีเมลด้วยคู่มือ SMTP โดเมนที่กำหนดเอง.
// app.js
import { render } from '@react-email/render';
import nodemailer from 'nodemailer';
import { Email } from './email';
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: '****************************'
},
});
const html = render(Email({ url: "https://example.com" }));
const options = {
from: 'you@example.com',
to: 'user@gmail.com',
subject: 'hello world',
html
};
transporter.sendMail(options);
เรียกใช้แอพเพื่อส่งอีเมล:
node app
ตอนนี้คุณสามารถไปที่ บัญชีของฉัน → อีเมล เพื่อดูสถานะการส่งอีเมลแบบเรียลไทม์ บันทึกความสามารถในการส่งอีเมล และตัวอย่าง HTML/ข้อความธรรมดา/ไฟล์แนบ
ป.ล. 🎉คุณก็ทำได้ ดูตัวอย่างอีเมลในเบราว์เซอร์และ iOS Simulator และ สร้างเทมเพลตอีเมลด้วย Node.js.