2024 React E-postaları Kod Örneği Gönderin
HTML, CSS ve JSX şablonları, örnekler ve üretime hazır SMTP entegrasyonu ile React web uygulaması e-postaları gönderin.
- Search page
- Table of Contents
Kurulum ve Gereksinimler
yüklemeniz gerekecek @react-email/render
ve nodemailer
npm bağımlılıkları:
npm install @react-email/render nodemailer
Kaynak Kodu ve Örnek
ile e-posta şablonunuzu oluşturun. .jsx
veya bir .js
dosya:
// 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>
);
}
Bu örnekte, Not postacısı kütüphane ve resmi sponsoru E-posta Yönlendir giden postayı göndermek ve önizlemek için.
İhtiyacın olacak Şifre oluştur giden posta göndermek için - lütfen Özel Etki Alanı SMTP Kılavuzu ile E-posta Gönder.
// 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);
E-postayı göndermek için uygulamayı çalıştırın:
node app
şimdi gidebilirsin Hesabım → E-postalar gerçek zamanlı e-posta teslim durumunuzu, e-posta teslim edilebilirlik günlüklerinizi ve HTML/düz metin/ek önizlemelerini görmek için.
Not: 🎉 Siz de yapabilirsiniz e-postaları tarayıcılarda ve iOS Simulator'da önizleyin ve Node.js ile e-posta şablonları oluşturun.