-
Notifications
You must be signed in to change notification settings - Fork 107
Description
Hello !
I'm trying to send anonymous mail for application support purpose. It worked a few weeks ago, but, I let it in a test project for a while, came back today and can't make it work anymore, I have no idea why.
Expected Behavior
Should send a mail with a fake email address source
Current Behavior
Instead of sending the mail successfully, I got timed out, whatever is the address email i'm sending it too (tried gmail, hotmail and a custom one)
Possible Solution
Not idea :(
Steps to Reproduce (for bugs)
const sendmail = require("sendmail")();
sendmail(
{
from: "anonymous@cc.com",
to: "myaddress@domain.com",
subject: "hello",
html: "content ",
},
function (err, reply) {
console.log(err && err.stack);
console.dir(reply);
}
);
That's it, that the code I've tried, I'm pretty sure it workes a few weeks ago, but somehow, it doesn't anymore... I don't know why
Context
I'm trying to send anonymous mail, as a way to send request to a support mail from a javascript application.
I cannot use an existing email adress to send mail, since it will be embedded into executable on a lot of computer.
Your Environment
Raw javascript script doesn't even work anymore