Questions tagged [email-bounces]

60 questions
16
votes
9 answers

send e-mail and check status

Using Java mail, I would like to send an e-mail and check the status. Possible statuses include: Hard-bounce: No mail server found Soft-bounce: Mail server found, but account not found Success Is it even possible to send an e-mail and get some…
Dónal
  • 176,670
  • 166
  • 541
  • 787
11
votes
1 answer

How can the Return-Path header be different than the actual email bounce recipient?

I recently moved my transactional email sending to Mailgun It works good so far however I am wondering about the return-path header. Consider this email (I removed irrelevant header and replaced email/domain for privacy purposes) Delivered-To:…
The Surrican
  • 26,829
  • 23
  • 111
  • 159
7
votes
2 answers

How to receive bounced mail using AWS SES With Postfix

I have configured postfix to relay mail to Amazon SES by following their integration guide and sending email is working without issue. However, I recently wrote a PHP application using a framework which produced a malformed email message. SES…
6
votes
0 answers

Receive bounced emails using Nodemailer

I am new to the SMTP related concepts. I am currently developing a nodejs email client using Nodemailer. In which, I am unable to receive the bounce back emails (NDRs). My queries below, To achieve this should I configure DSN or envelope? I think…
Praveen Kumar
  • 625
  • 2
  • 8
  • 21
6
votes
3 answers

Possible to get a report of email addresses that bounced from Amazon SES?

While the SES dashboard shows aggregated statistics about the bounce rate of emails sent through the service, I do not see a way of retrieving the individual addresses that bounced. Is this possible? Our situation is that the 'from' address we had…
Peter
  • 28,255
  • 17
  • 83
  • 120
5
votes
2 answers

AWS SES - Bounces Not Being Delivered To ReturnPath Address

I just wrote my first application using the AWS SDK for .Net to send ~7500 emails via SES with the following code: AmazonSimpleEmailServiceClient client = new AmazonSimpleEmailServiceClient("awsKey", "awsSecret"); SendEmailRequest req = new…
Greg
  • 8,121
  • 20
  • 62
  • 104
4
votes
1 answer

Best practices for resending to hard bounced emails after X days

If I see an email returned due to a hard bounce, after how many days is it acceptable to resend to that email address. It is possible for emails to be reactivated or for temporary outages, so it doesn't make sense to keep an email in my hard bounce…
Vivian Hsu
  • 41
  • 1
4
votes
3 answers

How to check for bounced emails in rails?

I'm currently creating an email app that is able to send emails to many users. However, I want to know whether there are bounced emails. I'm currently using Amazon SES to notify me if the email is bounced. However, I want the bounced email's data to…
3
votes
1 answer

Aws bounce error, Temporary mail addresses like mailinator.com or etc. causes bounce or not?

My application sends alert and emails from using aws mail services but today aws send me a notification that says bounce rate over %20 it should be below %10. But app doesn't have any unverified mail addresses except mailinator.com(which are…
nolines
  • 121
  • 1
  • 13
3
votes
1 answer

AWS SES is treating vacation responder as bounce

We use aws server and our application sends emails to customers via Amazon's Simple Email Service (SES). When recipients turn on vacation responder, SES treats them as bounces and blocks that email id after few sends. Is this a standard problem of…
2
votes
1 answer

"This is a permanent error." Is that for the email address or the message?

I'm wondering whether it's safe to mark bounce messages containing "This is a permanent error." string from the first time? When I get "This is a permanent error." doesn't mean "permanent error" for this message or for the user?
oaziz
  • 1,342
  • 1
  • 16
  • 31
2
votes
1 answer

Gmail - Any way for us to know if an email we received bounced?

Similar to Gmail. Any way to retrieve emails sent to my Gmail Apps domain email that bounced?. We have a google apps for work gmail that is not receiving an email from Zapier (routed through another two servers, one of which is mailgun, with a 605…
Radu
  • 21
  • 1
  • 5
2
votes
2 answers

How to catch bounced emails in PHP?

I want to save emails if it is bounced while sending email through PHP function mail() ? What is best way to catch that ?
Naveed Metlo
  • 325
  • 1
  • 4
  • 16
2
votes
2 answers

JavaMailSender SMTP Bounce back - Different domain email address

I'm using the Spring java mailer class to send email messages to my users: org.springframework.mail.javamail.JavaMailSenderImpl version 1.4 using Spring framework 3.0.7.RELEASE. I want to set the bounce back message for a failed email to go to my…
abeauchamp
  • 766
  • 1
  • 15
  • 28
1
vote
0 answers

How to set up outbound emails for matching bounces?

I am creating a system for sending out notification emails. Each email is pulled from a database table. I have full control over the outbound email programatically. This system, if possible, should be able to mark these outbound emails for…
alphadogg
  • 12,102
  • 7
  • 49
  • 81
1
2 3 4