Questions tagged [bulk-email]

Bulk emailing is sending the same email to multiple email addresses at the same time.

Bulk emailing is sending a similar email to multiple email addresses. Bulk emailing is often related to email marketing campaigns, where users that are subscribed to a certain newsletter are being sent a similar email, containing news, updates, events or any other information about their subject of interest.

72 questions
30
votes
4 answers

Amazon SES (Simple Email Service) for bulk e-mail, NOT for transactional e-mails?

The Amazon SES (Simple Email Service) self-described as a "highly scalable and cost-effective bulk and transactional email-sending service". From everything that I can gather, and by perusing the AWS SDK as well as the SES guides and API, it looks…
Josh
  • 409
  • 1
  • 4
  • 6
5
votes
1 answer

Sending bulk email using laravel queue

We are trying to send bulk email (100k) with PHP Laravel framework. Which way is the correct way to send bulk email with Laravel queue? Case 1. //controller public function runQueue(){ dispatch(new ShootEmailJob()); } //job public function…
Mithun
  • 351
  • 1
  • 3
  • 7
5
votes
2 answers

Personalised batch email with Mailgun in Laravel

I'm looking to send personalised batch e-mails to a large number of users. By this I mean that I would like to set up a template e-mail and inject each user's information into it before sending it. Of course, this can easily be achieved with Laravel…
Jonathon
  • 15,873
  • 11
  • 73
  • 92
4
votes
1 answer

Worried about using MailChimp to send member information

This is more of a theoretical question because I respect the opinions of those who frequent this website. Also, the MailChimp staff still have not replied to my urgent email sent over a week ago. I'm worried about using MailChimp for my web…
dcolumbus
  • 9,596
  • 26
  • 100
  • 165
3
votes
1 answer

Send bulk emails in Django with the same attachment

I want to send emails to members of my site who are to attend a meeting (ie. guests), each with (the same) PDF attachment. I'm doing this with Django's built-in bulk email functionality, in connection.send_messages(messages). At the moment I'm doing…
Herman Schaaf
  • 46,821
  • 21
  • 100
  • 139
3
votes
2 answers

Sending Thousands of Email per day without being spam

I'm having a website developed with ASP.NET which is a online art competition that people can register and enroll with competition. In my system there are lot of emails that sends on various stages of the process for a user. As an example, one user…
2
votes
1 answer

how to send bulk emails from firebase console?

I am trying to find the feature in firebase console to send bulk emails to the registered users in the firebase. But not able to find one. Please suggest me how can I send the bulk emails through the firebase console to the registered users with the…
user14707939
2
votes
1 answer

Is there an email service that queries your own database for users?

Is there an email service that allows you to nicely query your own database to create the recipients list? The issue is that we do tons of specialized user segmentation to create lists of recipients. Trying to keep our database in sync with the…
J-bob
  • 8,380
  • 11
  • 52
  • 85
1
vote
1 answer

Splitting one bulk email in to several

We have a website and we just ran into a problem when trying to send 700 emails in one bulk. I'm thinking it's better to send 100 emails 7 times but which approach should I take? I could just use a for loop and send an email 7 times but is there…
Niklas
  • 13,005
  • 23
  • 79
  • 119
1
vote
1 answer

How to get the email activity status from send grid for a single email sent to multiple recipients

I am sending an email (with custom arguments) to multiple recipients in To list and receiving one message id. Now I am trying to use sendgrid email activity api to fetch email status by using the query by providing the custom argument. In the…
vinay
  • 61
  • 7
1
vote
0 answers

Unexpected token '.' while trying to use Nodemailer SES transport sdk

I need to extend the functionality of my SMTP feature to handle bulk emails. It works fine, however when a big amount of emails presented it sends them very slowly (about 2-3 per second). Our current AWS plan allows up to 15 emails per second. I…
Simon Nazarenko
  • 107
  • 2
  • 11
1
vote
0 answers

Getting "Server temporarily unavailable. AUP#MXRT" while sending bulk emails (Deferred Emails)

I have a VPS server with CPanel on my domain (say mydomain.com). I have a SuiteCRM installed on a subdomain (say sub.mydomain.com) and I am sending mass emails from it in a batch of 90 every hour. While sending the emails from the CRM (Authenticated…
1
vote
1 answer

How to get SendGrid bulk-email statuses in C#

I need to send an emails (bulk sending), and I have two cases: The same email sent into multiple recipients Different emails sent into different recipients How, in both cases, I can control statuses? First case will return single x-message-id, but…
user2987281
  • 200
  • 1
  • 14
1
vote
1 answer

What are the Limit of sending emails through Gmail API using gmailr

I used the following method to send emails prepare_and_send <- function(sender, recipient, title, text, attachment) { email <- gm_mime() %>% gm_to(recipient) %>% gm_from(sender)…
1
vote
2 answers

How to send a bulk email with csv file and a jpg image attachments using gmailr

I want to send a bulk email with an attachment. The list of receiving email addresses and the body of the email are in a CSV file as below. I want to attach a CSV file and a JPG image to each email. I tried the following code, but I do not…
1
2 3 4 5