You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that NodeMailerMTA() isn't recommended for sending out email. I am not well versed with MTAs, can you explain a little bit why this is a bad idea? We have the same exact setup including the signing of emails right now, it doesn't work as should and TLS doesn't work for some mail providers like Zoho. So I am curious as why using something like this is a bad idea.
In the code processOutgoingWithQueueMailDirectDelivery or processOutgoingMailWithTransporterDirectDelivery is suggested but I can't seem to find these functions anywhere in the codebase.
I decided to open a fresh issue so anyone from the future could search and find this.
The text was updated successfully, but these errors were encountered:
Hey @Zonalds,I sincerly apologize for the delayed response.
Let me resolve your issue one by one.
it doesn't work as should and TLS doesn't work for some mail providers like Zoho
well I haven't faced any issues for sending mail to providers like zoho, I tried to sending mail to Zoho its working.
only exceptions Outlook and icloud which require IP whitelisting have their own policy.
In the code processOutgoingWithQueueMailDirectDelivery or processOutgoingMailWithTransporterDirectDelivery is suggested
I have removed this code and upgraded with newer sending method or upgraded methods.
I chose mta because for simple use, otherwise u can directly send mail to their DNS Server, using TCP/tls connection which is like complicated for the first time for a developer , like EHLO,HELO,MAIL_FROM etc..
I'm doing research how can I improve mail sending can be possible or how big companies sending.
I noticed that
NodeMailerMTA()
isn't recommended for sending out email. I am not well versed with MTAs, can you explain a little bit why this is a bad idea? We have the same exact setup including the signing of emails right now, it doesn't work as should and TLS doesn't work for some mail providers like Zoho. So I am curious as why using something like this is a bad idea.In the code
processOutgoingWithQueueMailDirectDelivery
orprocessOutgoingMailWithTransporterDirectDelivery
is suggested but I can't seem to find these functions anywhere in the codebase.I decided to open a fresh issue so anyone from the future could search and find this.
The text was updated successfully, but these errors were encountered: