Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sending anonymous mail get timed up every time #81

Open
Psycokwet opened this issue Apr 12, 2021 · 7 comments
Open

Sending anonymous mail get timed up every time #81

Psycokwet opened this issue Apr 12, 2021 · 7 comments

Comments

@Psycokwet
Copy link

Psycokwet commented Apr 12, 2021

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

@dolphineye
Copy link

Same here, did you find a solution @Psycokwet?

@Psycokwet
Copy link
Author

Sadly not, I have other things to deal with, so this got abandonned while waiting for other's inputs, sorry to disapoint you :/
If you find something, please do share ! :) Good luck with it though !

I kind of think this has something to do with anti virus softwares blocking stuff, but, I can't be sure. (i resetted my computer and changed my antivirus software between when I could send anonymous mails, and now that I can't, but, I couldn't unlock the situation, so I can't be certain of the cause)

@dolphineye
Copy link

OK, thanks for the reply. Looks like this project hasn't been maintained for a while now. I've personally fallen back to nodemailer for now.

@Psycokwet
Copy link
Author

It looks like it yes. Did you succeed using nodemailer to send anonymous mails? I tried without success :o

@dolphineye
Copy link

dolphineye commented Jul 22, 2021

Unfortunately no. Maybe there's a way, though, by properly configuring the sendmail service and use a sendmail transport. I personally don't need anonymous email sending for now, just basic email functionality which works with a temporary test account.

@Psycokwet
Copy link
Author

I see ! Thank you for your input :)

Yeah, if you don't need anonymous, don't bother with it, it's a pain in javascript it seems. Good luck on your project :)

@dolphineye
Copy link

Thanks, you too :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants