Nodemailer with Tutanota Mail in Node.js - node.js

I recently found the e-mail provider Tutanota, which I found trustworthy and which scored especially high on privacy. However, I cannot manage to run Nodemailer with Tutanota. Does anyone know which host and port Tutanota uses?

For those who have encountered the same problem as me:
It is not possible to send E-Mails with nodemailer and Tutanota Mail.
I have now switched to Zoho Mail. Sending mails is much easier with Zoho Mail and above all it works.

Related

[Linux][mutt]How to improve email "trustworthyness"

So, I run an online service where people can sign up using their email address. It's as basic as it can get. Put in your address, receive email with confirmation link.
For that I've set up mutt on Debian 11 which I'm using to send a HTML-EMail with an attachment.
For some reason, mail providers like googlemail and outlook filter those mails out. Sometimes they appear in peoples inbox, sometimes in spam and sometimes they don't get them at all. My googlemail UI shows me that it "couldn't verifiy if this email came from DOMAIN or from a spammer".
Does anyone here know what I can do to resolve this problem?
Any advice is appreciated.

Receive bounced emails using Nodemailer

I am new to the SMTP related concepts. I am currently developing a nodejs email client using Nodemailer. In which, I am unable to receive the bounce back emails (NDRs). My queries below,
To achieve this should I configure DSN or envelope? I think I'm confusing myself with the dsn and envelope options.
How does nodemailer get the bounced email? Any separate configuration needed for this? Or any event listener?
Thanks in advance.

Limesurvey notification emails will not send

I've recently noticed an issue with my Limesurvey installation. Until recently, I had a number of surveys set to email the user after submission (using {email} in the "Send detailed admin notification email" box to refer to an email question in the survey). However despite not manually changing anything, they no longer send. Some others do send from within limesurvey, for example from the "Create new admin" option, while token related emails will not.
In the case of token invitations, the debugging there will say emails sent when using php, but the test emails never arrive (multiple emails tested). When using SMTP, I get the below:
SMTP connect() failed... Some emails were not sent because the server did not accept the email(s) or some other error occured.
I should note that while I first noticed this in existing surveys in version 2.73.0, I've since done a fresh install of 3.1 and created a test survey. So this is pointing at a server config issue, but I haven't had any issues with emails sending except in this specific case.
Any suggestions of particular places to look would be much appreciated!
Did you try to change the email method in settings (https://manual.limesurvey.org/Global_settings/en#Email_settings)?
Email method: This determines how emails are being sent. The following options are available:
PHP (default value): uses internal PHP mail function
Sendmail : uses sendmail mailer
SMTP : based on SMTP relaying. Use this setting when you are running LimeSurvey on a host that is not your mail server
Make sure that you are using your SMTP configured email (Global settings -> Email settings) if you use SMTP, otherwise there might be a chance that the following error is displayed: 'SMTP -> ERROR: RCPT not accepted from server: 553 5.7.1 : Sender address rejected: not owned by user'
Qmail : Set this if you are running the Qmail mailer

Register sent mails

I'm using a web interface I've done to send mails.
These mails are sent using Nodemailer 2.6.4.
When I login to my roundcube webmail, I want the mails sent using this interface to be shown in "sent messages" section.
Is it possible to do it and how ?
Thank you in advance.
I did it simply with node-imap.
If someone wants an example, I could post it here.

Nodejs receiving email and redirecting to gmail email address

So i have an website, abc.com. If someone sends an email at support#abc.com i want to receive it at gmail address or whatever address i chose. Then if i reply to that email it in gmail then it should send either using gmail or mandrill. And from of the email should show up as support#abc.com.
This is my first time tackling email. And i have no clue.
So far i understand i need something to take emails in, send emails out, and then there is smtp server.
I get that nodemailer fulfils the role needed by two of the first things..But rest is confusing.
I know this sounds vague but as front end jquery dev i never thought of this much. So be patient and understand like with http protocol i have not much of understanding on this. This question could be many questions however i don't know what those question need to be.

Resources