@admin yes, but how can I use mail(1|2...).serv00.net with nodemailer?
For example I try to do something like this:
const nodemailer = require("nodemailer");
const transporter = nodemailer.createTransport({
host: "mail1.serv00.net",
port: 465,
secure: true
auth: {
user: "myEmail@domain.serv00.net",
pass: "Email_password",
},
});
const info = await transporter.sendMail({
from: ' "Brand" myEmail@domain.serv00.net', // sender address
to: "any email here ",
subject: "Reset Password",
html: "<a>Link of password reset</a>", // html body
});
But I doesn't work i get some errors related to connection failed (not established)
The question is, is what I'm try to do possible with your email serce or not if yes how ?
And thanks so much.