Questions tagged [email]
The email tag has no summary.
122 questions
5
votes
4
answers
4k
views
Password reset email that is not considered spam
When my website sends emails to set or reset the password, they sometimes don't arrive at the recipient.
This problem does not arise for email addresses at large providers (as Google or Microsoft), ...
0
votes
2
answers
108
views
Design Review: Queuing tasks to add rows of data followed by task to send email
I need to send personalized emails to a filtered set of users (~100,000) on every fortnight. I am using Marketing cloud API for it. The way I am thinking of designing the system is as follows:
...
1
vote
5
answers
264
views
How to refer to an e-mail in source code comment
Sometimes there are elaborate discussions about a subject, and while finally developing the program, you want to refer to a mail ... but then people still continue mailing about the subject, so the ...
0
votes
1
answer
339
views
Where should email notification logic go?
My architecture looks like:
Each block is an individual service. There may be more upstreams and downstreams added in the future. The upstreams need to send email notifications to users. Each email ...
0
votes
3
answers
111
views
Summarizing actions of a web application and serve it as only one email rather than many
I have a web application that has a lot of multi-action items that are done that require an email notification. Although not the biggest deal, we currently have it set so that it sends an email to the ...
2
votes
1
answer
144
views
How to randomly allocate a set of IDs digitally, one ID per person, such that everyone knows that the particular allocations are kept private?
I have a set of UUIDs that I want to assign to a set of people. I want to deliver these UUIDs to people in a secure manner, such that everyone knows that I do not know which UUID corresponds to which ...
0
votes
1
answer
168
views
Why does Google go through SMTP to send from Gmail to Gmail addresses?
Since Google controls both the sender and receiver in the case of a Gmail-to-Gmail conversation, couldn't they skip actually sending the email and route it internally? Why is there a need to invoke ...
-3
votes
2
answers
4k
views
Sending JSON in body of an email
Basically, in our scenario, data has to be sent from a WordPress form to Dynamics 365. My current approach is putting it into an email body in JSON format, that is then extracted and further processed ...
0
votes
1
answer
96
views
Email Notifications Implementation - Web Application
Good day,
I'm having difficulty structuring how I should set up email notifications for a Django app that I built.
As I'm seeing an increase of users in the app, it increases the occurrence of email ...
0
votes
1
answer
2k
views
Email via a Microservice
We currently have a monolithic code base which we are in the process of extracting some micro-services where it's obvious to do so.
One thing that stands out is our email delivery. We have numerous ...
3
votes
1
answer
2k
views
End to end email tests
In short: are email end-to-end tests a thing?
As part of my CI I would like to run email integration/end-to-end tests: the app would send it to some SMTP server and then hits maybe an endpoint where ...
1
vote
2
answers
280
views
Does POP suffer from any inherent security problems
I recall seeing a large email corporation discourage POP client access, suggesting it was insecure.
Assuming this is not FUD meant to encourage adoption of their client, I am wondering whether either ...
-2
votes
1
answer
206
views
DIY email service vs MailChimp and pals
I need to set up newsletter signup for a site.
Initially, I was eyeing services like MailChimp and SendPulse, but I'm not comfortable with their prices and I'm not really keen on sort of giving up ...
1
vote
1
answer
104
views
How far we have to consider the plug-ability while designing an email service using external library
I was designing an email service in .net standard 2.0 using mailkit library. I proposed the following design
This design was not accepted stating the following reasons:
This design have to many ...
-1
votes
1
answer
182
views
Is there existing technology write code to be executed in response to an email being sent for a certain email? [closed]
Similarly to a rest api, I want a server to listen for an email to an address I have created, and in response to mail being received, run code that I have created. Is this possible already? I ...