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.
Related
I need a information about PHPMailer about replying my own mails.
I need send a empty mail(subject, body), and when the first mail sent second mail need sending with replying first mail.
That's possible ?
I tried but never can repyling my own mails.
Yes, but PHPMailer won't do this for you. You will need to do it by getting and setting appropriate headers, in particular the Message-ID header that identifies each message, and the In-Reply-To and References headers which are used to track whether something is a reply. Probably the best way to see these working is to simulate it using your regular email client - Outlook, Gmail, Apple Mail – all of which will set those headers correctly.
I need a solution for calendar invite to send mails with response Status through organizer mail id using node j s. I tried in different ways to get the email by using mail gun but I'm able create an event but unable to send and change the creator and also unable import the send invite mails using mail gun API. And I used move method to change organizer but unable to change it.
Here the picture shown below
[got calendar invite but need to send by using mail gun API to change organizer]
[1]: https://i.stack.imgur.com/wYtJF.png
can anyone help me to sort out this issue. Thank you
you can use node ics invite send calender invites to user using mail attachments.
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.
I have developed a gmail add-on for personal use and it can currently draft a reply to a recipient using message.createDraftReply(replyMessage);. I then have to manually send email.
After the button click event, I would rather that the the email just be sent directly without further action needed on my end and the UI go back to the inbox (rather than the email view).
Is this possible? If so, can you please provide some direction/example.
Have you tried using the sendEmail method?
See documentation here:
https://developers.google.com/apps-script/reference/gmail/gmail-app#sendEmail(String,String,String,Object)
In my application im using mailgun module to send and receive emails using node.js.I don't know how to receive the incoming emails.I created route to receive the incoming email.but its not working.
Mailgun is simply posting URL encoded form data.
Check out this discussion on receiving POST data in node.js: How do you extract POST data in Node.js?
Also it's worth noting that for whatever mail-header-related reasons, if you have mailgun set to forward something to a#b.com, then messages sent from a#b.com will not show up back in your inbox. Send mail from a different address. Note that mailgun can sometimes tell if you're using the Send As feature in gmail, and will know your main address.