Method of exchanging digital messages from an author to one or more recipients.
2
votes
1answer
9 views
Composing an HTML email body in PHP swiftmailer
The following code is what I'm using to send a password reset email. The specific part I'm referring to is how I'm setting $message. Would there be a cleaner way to ...
3
votes
1answer
34 views
Email finding bot
I'm working on a lead generation bot that helps you find the emails of people you want to reach out to.
The bot grabs your spreadsheet from gdrive, logs into several email finding tools, and collect ...
5
votes
2answers
62 views
UnitOfWork for sending mail
Topic is about a LoB web application written in C# for ASP.Net Core. We're following the blue book DDD architecture. We're using SimpleInjector as dependency injection container. Every request opens a ...
2
votes
0answers
18 views
User Login Notifier [closed]
I'm creating a shell script that is supposed to email me whenever a specific user logs in. However, I'm wondering how I would go about doing this for more than one user. This is my code:
...
1
vote
0answers
46 views
Send an email to the client and admin [closed]
I have an MVC Code that looks as the code below, for every action on the system i send an email to the client and admin, sometimes i send 5 emails per users actions. I am looking for a way i can ...
4
votes
1answer
87 views
Email Controller
I'm developing a Social Engineering Awareness Training Application. This is the focus of my thesis for my undergraduate degree. This will be a multi-part review request, however, if you want to see ...
1
vote
1answer
50 views
Using JavaScript callback to conditionally send email
I have an app where users at some point select the amount of tasks they have completed. If they have only completed 3 or less then 3 tasks then I send an email to the system admin to inform them.
But ...
3
votes
2answers
111 views
Asking the user to input a proper email address
The purpose of this code is to ask the user to input an email address but it must contain "@" and ".co". The code works but it is too long so I would like to know if there is any way to shorten it ...
6
votes
2answers
235 views
Using SendAsync to send multiple emails
My method for sending emails with Send() is getting very slow when I send more than ten messages.
Sample
1 (1 sec)
2 (2 sec)
3 (4 sec)
4 (8 sec) ...
0
votes
0answers
149 views
Mail merge with attachments and cc for MS Word
I am very new to coding and really started a few weeks ago for a new job I have. out of necessity, I am slowly learning VBA (which I can't say is very easy...) I started by recording macros in Excel ...
4
votes
1answer
463 views
Verifying user accounts on SMTP servers
I've been writing a basic script to enumerate SMTP users (via a user dictionary) on poorly configured SMTP servers. In scripts like this, I usually see arguments handled as follows:
...
3
votes
1answer
41 views
Nagios service alert HTML email builder
I have a well functioning Nagios Core system set up. I wanted to make our alerts both easier to read pertinent information quickly as well as provide additional details from custom host and service ...
5
votes
1answer
94 views
Send multiple individualised emails via a limited number of SMTP clients
This is my first foray into multi-threading, and I'm keen to know if I have fallen into any traps or have room for optimisation/improvement.
Example usage:
...
4
votes
1answer
56 views
Email redirection script in python
I am new to python and wrote a email redirect script. It extracts mails from a server and than resend them. I would like to get some feedback:
...
1
vote
0answers
90 views
Email thousands of customers from a PHP form using a MySQLi query on a MySQL database
How can a large internet service provider email certain customers to warn them about an impending service interruption? I'm providing what I think is a reasonable solution, but I have not tested it. ...
2
votes
0answers
50 views
format any mail into readable text
Scope is to throw any mail, html or plain or multipart into this and receive a readable formatted text that deals with special characters and html issues. Field of usage: System that imports mails ...
2
votes
0answers
39 views
Generating email with BCP
This code iterates through the table @Table1 to get the Purchaser, PurchaserID, ...
3
votes
1answer
56 views
Structuring basic client side / serverside email form
I've been more than likely doing this entirely wrong for quite awhile and would like to correct that.
With the code review I would like to get critiqued on everything. This includes:
JQuery syntax/...
3
votes
2answers
59 views
IMAP Mailbox Daily Average Volume Statistics Generator
Because my job needed something like this, I created a Python script that'll connect to an IMAP server, get all the emails, and then calculate the very rough daily average of emails received to the ...
6
votes
1answer
101 views
Reddit bot that posts text messages to subreddit
This is the first program I've ever made in Python, and I never really studied the language (just looked at bits of code online) so I'm sure the performance is less than optimal.
The Objective: At my ...
2
votes
2answers
603 views
PHP contact form using PHPMailer and Google Recaptcha
My company is designing a new site, and because I'm currently on bench I've been tasked with writing any PHP required. Pretty simple stuff, just a contact form and a resume upload page, both using a ...
5
votes
1answer
255 views
Script to send push notifications using email, Pushbullet, or Pushover
I have built a tiny script to send out push notifications. I would be glad to receive general suggestions / feedback.
My main problem is that the only security offered is coming from the OS ...
1
vote
1answer
26 views
Simple Python Old Email Eraser From Inbox
This is a old email eraser that deletes old unwanted email from your gmail or yahoo inbox, cause guys really we all had the nightmare of selecting and deleting 50 old emails at a time when their are ...
1
vote
2answers
115 views
Sending email using libcurl - follow-up 2
This question is a continuation of: Sending email using libcurl - follow-up
Does this code have any problems? Can I improve it?
...
9
votes
2answers
751 views
Telling me what lesson I have tomorrow and emailing me the results
This program tells me what lessons I have tomorrow then emails them to me.
This program works fine, but I was wondering whether there is a way to simplify the script or make it more efficient. I have ...
3
votes
1answer
180 views
Sending email using libcurl - follow-up
This question is continuation of: Sending email using libcurl
I developed a class to send email. Does this code have any problems? Is it thread-safe?
...
2
votes
1answer
606 views
Simple email validation script
I was doing a programming challenge and the object was to validate an email address, I wrote a simple little email validator and would like some input on how I can make it more efficient.
How it ...
2
votes
2answers
487 views
Sending email using libcurl
I developed a function to send email based on this. Does this code have problems? Also, I'm not sure if this code is thread-safe because of the global payloadText ...
3
votes
1answer
92 views
Validating email confirmation and sending different emails to admins
I wrote a method that will confirm email with token send to user emails. It will also send different email depending on the condition for the registered user. If anyone would write the same method, ...
6
votes
1answer
178 views
Emails, emails everywhere
My job entails me to send a lot of emails. I'm really bad at typing so I decided to create a program to do it for me.
I've created an email generation tool (originally posted here.) I've changed ...
4
votes
1answer
37 views
Yum Notification Script
This is a Bash script I wrote to email me when updates are available for my server. I'm new to bash programming, so I don't know if I've done this well.
...
5
votes
2answers
144 views
Task Parallel Library and Mailkit
I have a use case where I need to process about 80,000 emails per day. The client has an existing process that takes about 1/sec per email and is running out of time before the next batch comes in. ...
8
votes
1answer
59 views
6
votes
2answers
189 views
Counting senders in a mailbox
I'm learning Python from Coursera and am doing a class. One of the assignments is as follows:
Write a program to read through the mbox-short.txt and figure out who has the sent the greatest number ...
1
vote
0answers
93 views
Mail service implementation using Razor engine a MailMessage
This is a very basic Mailer service that I put together after finding out that MVC Mailer doesn't play nice with MVC 5.
...
3
votes
0answers
41 views
Fluid HTML email template
I created this as a template for our email marketing team to use when creating emails. For fluid/responsive behavior, I am using max-width and conditionals for clients that do not support it (e.g., ...
4
votes
1answer
47 views
Babysitting a server reboot
I'm looking to improve a loop within a script that performs scheduled server restarts.
Currently, I'm using a DO While loop with an exit condition within an IF statement once a counter reaches a ...
4
votes
1answer
314 views
Custom Python 'Server Status Checker'
I've written a home-grown solution for checking the status of my servers. This is both an exercise for me in learning further about Python, but it's also critical to status-checking critical things ...
6
votes
2answers
427 views
C# helper class - mailto
I'm looking for input, advice, criticism. This is my first helper class. While use of mailto URLs should most often be trivial, I have a real world need to send to multiple recipients and with a body ...
1
vote
1answer
98 views
Validating Email Addresses without DB
I wanted to put this out here and see if there were any security vulnerabilities that I'm not seeing. Also, if I can improve performance without sacrificing security, that's always a plus. Thanks in ...
4
votes
1answer
77 views
Command line based email generation tool
Unfortunately due to my job I will have to leave out some of the information that is created by this generator, however I will be replacing it with another string of information.
I have created an ...
8
votes
2answers
286 views
Can I stop validating email addresses now please?
Writing code to validate emails is a thing I don't like. It's usually pretty pointless as there's there is actually no right solution, so it leaves me with a certain sense of existential dread.
I've ...
7
votes
3answers
564 views
C# SMTP notifier client
I've come from a PHP background and I'm really trying to unlearn the bad habits I acquired from not doing things properly with PHP through my own lack of understanding..
I'm looking to advance my ...
0
votes
1answer
118 views
3
votes
0answers
94 views
Using the visitor pattern to compose notifications
I'm solving the following problem using the Visitor design pattern in Swift:
When a quote is requested or an appointment is booked we send out an
email to the customer, and build an internal ...
1
vote
2answers
73 views
Two classes to validate and store an e-mail address
I'm trying to improve my limited knowledge in PHP (7) and I wrote these two simple classes as a proof of concept.
They both have just one (private) property ->email and they run validation before ...
3
votes
1answer
157 views
Validating e-mail address input in C
I have this little function to validate e-mail. It's a little piece of code to search major mistakes in e-mail input and it's part of a bigger program I have to complete as a school assignment. Is ...
3
votes
2answers
144 views
Queuing e-mail notifications in a background thread
I'm new to parallel programming concepts. I'm trying to implement fire-and-forgot kind of method in my project. Somebody please evaluate the below code & let me whether this is thread safe or not.
...
1
vote
0answers
83 views
Email text parser
I am writing a parser to parse out the fields of an email message in the following format (note that I expect that the "To:" field could contain multiple lines, same with the "Subject:" field.
...
2
votes
1answer
64 views
Program to email you exchange rates that you are tracking and stats on them
This is a program I made as I am currently living in Japan with a British bank account, so exchange rates matter to me.
On the first time run, you run the script with two arguments (two currencies) ...