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
1
vote
1 answer

Sendgrid sending email but many are being deferred: status code 202

We are using sendgrid to send a weekly newsletter to about 50k emails. We have an authenticated domain as well as two of our own IP addresses. Our script batch sends 500 emails at a time to all the addresses with personalization. However, when we…
1
vote
0 answers

Sending bulk mail using nodemailer without others knowing all recipients?

I am trying to build a bulk mailer service which could send campaign emails to all the list of users. Everything works fine, when I import the user emails from json file and add it to to section in nodemailer transport object. Something like this…
Vivek Kumar
  • 43
  • 1
  • 4
1
vote
0 answers

how to provide delay, the number of requests in one send?

I'm here to ask how to provide delay and also the number of sending emails at a time in python threading. let's take an example like this I want to send emails in large quantities but on the other hand I also want to provide a maximum limit of…
1
vote
1 answer

AWS SES SendBulkTemplatedEmailResponse for tracking email statues

I am referring to .net SDK here but I believe class level concepts are all same. This is for sending bulk emails using templates…
1
vote
1 answer

BulkSend emails with respective attachments in Gmail using appscript

I would like to send bulk google mails with attachments using a spreadsheet. In this spreadsheet, i have put the email address, the content template, and the respective attachment urls. While i try and execute the below code, everything went well…
1
vote
0 answers

How to hide email headers info like X-me and Received?

in my inbox i see that some emails have a pretty header that won't let us get much info about the sender as exemple : From: Boutique Fr Date: Thu, 20 Aug 2020 06:32:11 +0600 Subject: Important Deals Message-Id:…
JoeVenner
  • 30
  • 4
1
vote
2 answers

Wordpress - How to e-mail post notification for 4000 subscribers

We have a Wordpress website with 4000 subscribers and we'd like to sent an email for each one after post. We are actually using Sendgrig as SMTP, but the problem is on our server, that slowly handle each send. Two posts can generate a queue with…
Caio Cunha
  • 13
  • 2
1
vote
2 answers

Question about Unsuccessful delivery reports in sending bulk Emails

I have database of approximately 10k users who have subscribed for newsletters. I am changing my site from asp to php. I am sending newsletters by cron job. I want to track the record of unsuccessful delivery report. How is it possible? Please Guide…
SohailRajput
  • 629
  • 1
  • 7
  • 18
1
vote
1 answer

PHP Mail_Queue without PEAR

I want to send bulk emails and I've found (Is there a limit when using php mail function?) the recommended way is to use PEAR Mail_Queue. But that question is too old, and I've also read PEAR is almost deprecated and replaced by Composer now. Is…
Enrique
  • 4,693
  • 5
  • 51
  • 71
1
vote
0 answers

Unable to loop more than 30 times in swift mailer

I am trying to send bulk email using swift mailer I have to send 2500 emails at a time, unfortunately i cant sent more than 30 emails I use the following code $sql = $db->Query("SELECT * FROM customer_data WHERE c_status=?",…
1
vote
1 answer

lumen.ERROR: Symfony\Component\Debug\Exception\FatalThrowableError: Fatal error: Call to undefined function App\Http\Controllers\dispatch()

I am working on Lumen for sending bulk mailing but I am getting an error like, Stack trace: [2018-07-27 04:57:14] lumen.ERROR: Symfony\Component\Debug\Exception\FatalThrowableError: Fatal error: Call to undefined function…
Harsh Vaid
  • 179
  • 1
  • 6
1
vote
2 answers

Sending bulk emails using different credentials

I need to send hundreds of emails using different credentials from laravel. Each customer of mine has his/hers mail list and needs to provide their own SMTP server. I process that list and send emails on customer's behalf. This is what I have so…
Andrew
  • 7,619
  • 13
  • 63
  • 117
1
vote
2 answers

Bulk Email with Swiftmailer

I am using SwiftMailer to send bulk emails. At the moment, I do it with the code $transport = Swift_SmtpTransport::newInstance('*****', 25); $transport->setUsername('***'); $transport->setPassword('***'); $mailer =…
Adam
  • 25,960
  • 22
  • 158
  • 247
1
vote
1 answer

ActiveAdmin batch email

I started using active admin for a little Rails 4.2.0 app for the administrative backend, and I am trying to send batch emails. I can not find in the documentation how to do so( Maybe I am looking in the wrong places). I have already a mailer…
Joseworks
  • 541
  • 1
  • 6
  • 20
1
vote
1 answer

bulk email using send grid in rails

Context: I need to send bulk-email using send grid in a rails app. I will be sending emails to maybe around 300 subscribers. I have read that it can be accomplished using headers["X-SMTPAPI"] = { :to => array_of_recipients }.to_json I have tried…
newbie
  • 1,049
  • 5
  • 15
  • 29