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..
Related
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 ?
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 need to find a method to use excel to send a direct message to slack user like we use MAilto in with subject and body function to send the user email,
for example (WhatsaApp)
api.whatsapp.com/send?phone=XXYYYYYYYYYY&text=This is my message
Well if i understand correctly, you want to get info from excel and send this info to a user, well that's possible in one way, you have to be able to read excel, which i don't recommend.
i recommend Google spreadsheet for that. anyway lets not get off-topic.
then you need to know how to send message to slack, Do you know ?
i will assume not, so to send messages there is two ways,
Webhooks
Web API
method URL = https://slack.com/api/chat.postMessage
to Send Through Web API, you have to pass the following arguments:
token The Oauth2 Token you will get from slack when configuring your bot or app, Or you can use Legacy tokens instead
channel The place you want to send the message, Channel ID if it is a channel, or User ID if it is a User.
text As the name say, the message you want to send
as_user Whether you want to send the message as your name or as a Custom name, This a boolean method, Means its Only True or False
Note: To configure a custom name its in another argument we will reach.
attachments A JSON-based array of structured attachments, presented as a URL-encoded string.
username The name you want to appear as the sender of the message, only works if as_user is false, if as_user is true, it will ignore this argument.
Hope this help.
and please next time share a code so we can help, here there is not just 'I need...'
its a place where you share code and then ask 'I need...' so we can help
I have solved the issue already
Creating an APP and using the chat.postmessage
I am building a website where users are able to make appointment requests. The information goes to a mongo collection. Is it possible to send the information to an email as well as the mongo collection?
In other words, whenever the db receives a new entry I'd like for that entry to be sent to an email that I choose.
I would post some of the code but I don't have any context or idea where to start.
Yes it is possible.
You can google nodejs send email and you will find plenty of node modules that do that.
One example is Nodemailer module.
You will have a function where you store records to mongodb. Inside the same function, after insertion/update, you would call .sendMail function to send an email.
We have an alert set-up for sharepoint list, but I want to add some custom text to the alert email. We do not have any access to SPD or sharepoint server and can make changes to sharepoint client only.
Can anyone please advice?
The code that sends out emails runs on the SharePoint server via the Timer Job. Since you have no access to do anything with the server you've got absolutely no chance of modifying the built in alert emails.
Could you do this with javascript?
You can't send emails with JavaScript directly. You can open up a draft email in a users default email client using a mailto link but this won't achieve what you want as a user will still have to edit it.
You could, I suppose, put some javascript onto an edit page using a content editor web part (which you can do without SPD) to on changes make an AJAX call to a separate web server to do the actual sending.