There all please what is the right architecture for making an application that can send emails in bulk.
I know I would be needing an
SMTP Server
A Mail Sechduler
A database to store email records.
A web portal to help collect emails for users and load in my database.
So my challenge is creating the app in such a way that it always goes to inbox.
I also have another challenge. How do I ensure that I can get report when I send a group of emails.
Take for email. A user comes on my platform to send a bulk email to 10 email addresses.
first 5 delivery and the last 5 did not deliver. I want to create a reporting system. which would allow the user to konw when a message is PENDING, DELIVERED AND FAILED.
I am using Mailkit library. If I use it to send dont know how to get feedback on this email sent.
Please how do I do it. I dont intend using the likes of mailgun and mailjet.
typically with email delivery, for each email you check bounce (busy) and reschedule the email (smtp fail). it can takes days for a failed delivery response to arrive (its a mail message to the inbox with the same message id). many email systems will eat
the email rather than respond for failed delivery.
you need to be careful that the sending ipaddress is not marked as a spam source, or the receiving email system will ignore.
all mail will be from your smtp account name, if you try setting the send from, it will be recognized as spam.
So I also head that I may need to pay to some email regulatory bodies so they dont blacklist my IP and allow this emails to go inbox. Please how true is this. If yes can you give me links so I can get cost implications and know all the regulatory bodies
that I should make payment to.
You don’t pay a regulatory body, you pay to be on an isp that doesn’t host spam and isn’t blacklisted itself. You also should be sure your emails are not classified as spam. Bots are used to detect spam. Read articles about producing useful emails.
Thanks alot. I would appreciate if I could get links on how to become an ISP that does not host spam. Possibly were I can signup for the service.
This is pretty basic stuff... Most hosting services provide SMTP. Just do a Google search for a host that fits your price range and has the features you're looking for.
Member
98 Points
326 Posts
Email Bulk Sending Application
Feb 06, 2020 07:18 PM|InspiredJide|LINK
There all please what is the right architecture for making an application that can send emails in bulk.
I know I would be needing an
So my challenge is creating the app in such a way that it always goes to inbox.
I also have another challenge. How do I ensure that I can get report when I send a group of emails.
Take for email. A user comes on my platform to send a bulk email to 10 email addresses.
first 5 delivery and the last 5 did not deliver. I want to create a reporting system. which would allow the user to konw when a message is PENDING, DELIVERED AND FAILED.
I am using Mailkit library. If I use it to send dont know how to get feedback on this email sent.
Please how do I do it. I dont intend using the likes of mailgun and mailjet.
This is meant to be custom built.
Thanks alot
All-Star
53041 Points
23611 Posts
Re: Email Bulk Sending Application
Feb 06, 2020 07:46 PM|mgebhard|LINK
There are email services and software that have these features.
Otherwise, you need to learn how email works. Start reading RFCs.
https://www.google.com/search?rlz=1C1GGRV_enUS812US812&sxsrf=ACYBGNRlCHXkwiblpaZc_vHihg2tCJapwg%3A1581018222265&ei=bmw8XuzuD5GvytMPw8CkwAs&q=email+rfc&oq=email+rfc&gs_l=psy-ab.3..0i7i30j0i67j0i7i30l8.92857.94125..94934...0.1..0.230.890.3j3j1......0....1..gws-wiz.......0i71j0i10i30j0i8i30j35i39j0i273j0i7i10i30.TAvmpoDgl14&ved=0ahUKEwjs3ZXs173nAhWRl3IEHUMgCbgQ4dUDCAs&uact=5
All-Star
58184 Points
15655 Posts
Re: Email Bulk Sending Application
Feb 07, 2020 04:20 PM|bruce (sqlwork.com)|LINK
typically with email delivery, for each email you check bounce (busy) and reschedule the email (smtp fail). it can takes days for a failed delivery response to arrive (its a mail message to the inbox with the same message id). many email systems will eat the email rather than respond for failed delivery.
you need to be careful that the sending ipaddress is not marked as a spam source, or the receiving email system will ignore.
all mail will be from your smtp account name, if you try setting the send from, it will be recognized as spam.
Member
98 Points
326 Posts
Re: Email Bulk Sending Application
Feb 12, 2020 05:16 AM|InspiredJide|LINK
So I also head that I may need to pay to some email regulatory bodies so they dont blacklist my IP and allow this emails to go inbox. Please how true is this. If yes can you give me links so I can get cost implications and know all the regulatory bodies that I should make payment to.
All-Star
58184 Points
15655 Posts
Re: Email Bulk Sending Application
Feb 25, 2020 05:15 PM|bruce (sqlwork.com)|LINK
You don’t pay a regulatory body, you pay to be on an isp that doesn’t host spam and isn’t blacklisted itself. You also should be sure your emails are not classified as spam. Bots are used to detect spam. Read articles about producing useful emails.
Member
98 Points
326 Posts
Re: Email Bulk Sending Application
Mar 06, 2020 03:50 PM|InspiredJide|LINK
Thanks alot. I would appreciate if I could get links on how to become an ISP that does not host spam. Possibly were I can signup for the service.
All-Star
53041 Points
23611 Posts
Re: Email Bulk Sending Application
Mar 06, 2020 03:58 PM|mgebhard|LINK
This is pretty basic stuff... Most hosting services provide SMTP. Just do a Google search for a host that fits your price range and has the features you're looking for.
Member
98 Points
326 Posts
Re: Email Bulk Sending Application
Mar 27, 2020 04:11 PM|InspiredJide|LINK
ok thanks.