I'm working on an web application with ReactJS and Nodejs and I use Nodemailer to send email.
All work fine but, my current issue is that I'm looking for a way to categorize the sent email so that recipients receive it in for example updates or Promotions category like on this screenshot.
Any help or link to help ?
Related
I am trying to do a project where I want to send mails to the subscribers using Nodejs and Listmonk.
Whenever user registers to the website I want to add his/her email to Lismonk server and want to automatically send mail whenever some particular conditions are met!
Any idea how I can do that or any reference please share!!!
Thank You..
Hello I have developed an application that works with React.js and Node.js.
I use AWS and SES (Simple Email Service) to send some emails.
My question is whether there is any way I can keep track of emails sent and opened by my users to prevent them from qualifying me as spam or that my SES account health will decrease too much.
I have seen that there are some browser extensions with which it marks the emails sent with a double tick if the user have read it, but I do not have a record such as in gmail.
Has anyone encountered any similar problems?
Is it possible via AWS or via Node to achieve this?
Greetings and thanks in advance.
I agree with #Ravi's answer above - SES does provide notifications - however in my experience the open notification is a lot less reliable than the delivered and bounce notifications.
Tracking opens is difficult as browsers, popup blockers/security software and email clients themselves can disable/break features like read-receipts and tracking pixels in the name or privacy. The most reliable way of tracking opens is to have a clickable link in the email body (and a compelling reason for your user to click on it) and include a unique id in the URL that you can capture server-side.
With the help of some simple configurations with SES and SNS. By creating a topic and doing the subscription like where you want to get the notifications. Through this, you can track the status of your emails whether they are opened or not. SNS will send you email notifications.
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 web application in node.js, and now I want to fetch email(s) from gmail and store in my application database. I have read/checked mail-listener2, but it give me some error about authentication. I have raised issue for that, but I am still looking for a trusted library like this. Does anybody worked with this library, or any other solution for the same? In short I am looking for a code/sample/library which is fetch email(s) (including attachment and header detail (I need uniqueid/threadid of email, so I can make a ticketing solution) from G Mail account.
Thanks