Questions tagged [mass-emails]

58 questions
0
votes
0 answers

Mass email inbox creation API

I am reaching out to the community for a help. One of the public facing website we are developing, will take an anticipated load of 2 million emails per peak hour. In order to perform load testing, I was looking to utilize API calls to create email…
Automator
  • 13
  • 5
0
votes
2 answers

What is the safe way to do automated emails?

I am in the middle of doing an auction site whereby emails are sent out regularly when people win items, sell items, didn't sell item, etc etc... Which is the best way to send these emails so they don't get blocked or marked as spam ?? before with…
Lee
  • 1,280
  • 4
  • 18
  • 35
0
votes
2 answers

Code to read CSV file & print list of dates per user

I have a csv dataset containing 4 columns. First name | Last name | Date of Absence | Email I want to read this file and mass email each employee with the list of dates they were absent on. I initially started just trying to loop, save and print out…
0
votes
1 answer

Bulk legitimate email: Can I predict liklihood that the outgoing messages will be wrongly flagged as spam?

The recipients represent a wide variety of academic institutions and business organizations. Many use free email accounts too, like gmail and hotmail. There are several thousand addresses in the distribution list. Seems some people on the…
Perry Horwich
  • 2,798
  • 3
  • 23
  • 51
0
votes
1 answer

Python email header extractor

I have a simple piece of code with will look at a email header and pull out the date, from, to and subject of the email header. To do this i must put the email header into a .txt document in order for the code to read the header. from email.parser…
Will
  • 255
  • 3
  • 14
0
votes
0 answers

Sending a mass-email with Python using data from several .txt files

I am currently writing a small program to ease my workload sending a couple hundred of emails daily. I have edited code I found somewhere and came up with this so far: import smtplib from email.mime.text import MIMEText from time import sleep from…
Lucius
  • 9
  • 3
0
votes
1 answer

How webmails work with Google cloud hosting? Also how can I setup newsletter solution with MailWizz WordPress plugin in GCH?

I have been building a WordPress website and I am using Google Cloud Hosting as my hosting solution. I am very new in using the Google cloud hosting and I found it's not easy to understand things as I'm even not anyone with IT skill but previously…
0
votes
2 answers

How to send multiple emails using spring batch

I need to send multiple emails to many users in my application using Spring Batch. I am new to Spring Batch. Need some pointers for it.
kiara
  • 209
  • 1
  • 3
  • 5
0
votes
1 answer

how to bypass DMARC for send emails by using any email for users

I have a website where users can register and fill in a Profile form, then submitting their profiles to many companies emails saved in my DB, bur when i use users email as "from" field after a while the emails blocked according DMARC. i have used…
Bnaidt
  • 5
  • 1
0
votes
2 answers

Send mass SMTP emails is slow and give error after sending 10-12 emails

I am sending SMTP email using code: protected void btnSendEmailToAll_Click(object sender, EventArgs e) { string username = Master.User; //Create a temporary DataTable DataTable dtCustomers = new DataTable(); …
Preet
  • 984
  • 2
  • 14
  • 34
0
votes
2 answers

Azure Function SendGrid

Hi I'm basically executing a query which returns x amount of emails that exist on a specific day and I want to send an email to all of these emails using sendgrid's api here is my code - I am running into alot of errors listed below could anyone…
rahulchawla
  • 170
  • 1
  • 3
  • 20
0
votes
1 answer

Best way to send HTML email to group of people in MySQL table?

I would like to know what the best way to email a list of people (>=2000) from a MySQL database is. I would like to send an HTML email to the people retrieved from a table in this MySQL database. I know that there are existing programs or "mass…
TMM
  • 483
  • 1
  • 9
  • 18
0
votes
5 answers

Sending mass emails in the background - Create Thread or use ThreadPool?

I have an application in which an action triggers a number of emails to be sent out. The number of emails is variable and can be anywhere from 10 to 1,000 per action. I don't want the application to hang while the emails are being sent (thus…
Marko
  • 71,361
  • 28
  • 124
  • 158
0
votes
1 answer

Mass emails with individual coupon codes

I'm trying to send email coupon codes to a list of different people. The idea is that they: Go to the landing page Input their email Receive an email with a coupon code for a coffee shop We're using Mailchimp, and I've been racking my brain trying…
Punt Speedchunk
  • 613
  • 1
  • 5
  • 12
0
votes
1 answer

How to track outgoing email in drupal?

I am using Views send module (https://www.drupal.org/project/views_send) to send email through drupal. But is there any module to track email, who open it, when it open, how many times it open etc ?