I am planning a web-application for voting in closed groups, such as clubs or parties. It should work as follows:
My main concern is that sending many emails to the club members might be considered as spam. I read this other question about how to not be considered a spammer, but that question considers promotional emails. In that case, the best solution is to use a mailing-list handling service such as MailChimp. But for my application it is not a good solution, because:
What is a right way to send the voting links from this application?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
What I could suggest in your case is to use a managed SMTP service like SendGrid for example, they offer a free plan which might be sufficient for your initial needs.
That way you would not have to manage and maintain your own mail server.
This post here might be a good read too:
https://www.digitalocean.com/community/tutorials/why-you-may-not-want-to-run-your-own-mail-server
Best, Bobby
Hello, @erelsgl
As per Bobby’s suggestion, I’ll also recommend to use a third-party email bulk provider like SendGrid which you can use as a SMTP server in order to send emails from your droplet using your algorithm.
https://sendgrid.com/blog/create-an-smtp-server/
You can also use other providers but make sure to check their policy for sending bulk emails. Most of them will require sign-off/unsubscribe links or the list to be OPTED-IN (meaning the users have agreed to receive your emails) and so on.
Hope that this helps! Regards, Alex