Send email without authentification

I try to send an email from my METEOR server as described: https://docs.meteor.com/api/email.html

But i want to send emails without authentication. I have no username and password. If i try MAIL_URL=smtp://@relay.xy.xxxxx.com:578 without username and password i get the error:

unable to verify the first certificate.

Is it possible to set a parameter like ā€œSMTPAuth=falseā€ as in PHP?

You donā€™t use the @ if you donā€™t have a username:password and do you mean :587?

Check also this:

1 Like

Thank you! Yes, I mean 587.
But if I try MAIL_URL=smtp://relay.xy.xxxxx.com:587 or MAIL_URL=smtp://relay.xy.xxxxx.com:25 I also get the error:

unable to verify the first certificate.

You could try this solution (it sounds vaguely similar :wink:):

or you could try port 25.

1 Like

Thank yo so much!!
This solved my problem!

2 Likes