سلام دوستان ،
چطور میشه از React ایمیل فرستاد ؟؟
مثل NodeMailer در Node.js
یا امکان استفاده از Node.jsدر React ، بدون داشتن Backend وجود داره ?
من با Nodemailer ایمیل فرستادم و مشکلی ندارم ، ولی نمیتونم به React وصلش کنم
const nodemailer = require("nodemailer");
const Email = "";
let mailTransporter = nodemailer.createTransport({
service: "gmail",
auth: {
user: "onlineshop@mail.com",
pass: "password",
},
});
function sendVerify() {
console.log("value");
let detail = {
from: onlineshop@mail.com",
to: Email,
subject: "this is a sub",
text: "this is an text",
};
mailTransporter.sendMail(detail, (err) => {
err ? console.log(err) : console.log("success");
});
}
module.exports = sendVerify;
سلام وقتت بخیر 👋
من با React کار نکردم ولی یکسری سرویس ها هستند که با استفاده از API درخواست رو دریافت می کنند و ایمیل می فرستن.
برای مثال:
https://www.mailjet.com/
https://sendgrid.com/
https://www.emailjs.com/
آیا مایل به ارسال نوتیفیکیشن و اخبار از طرف راکت هستید ؟