email-bounces

Detect keyboard mashed email addresses

自闭症网瘾萝莉.ら 提交于 2021-02-07 10:53:57
问题 We're trying to reduce our email bounce rate and often we get people mashing their keyboards. Here's a few example "email addresses" on our suppression list: aaaaaaaaaaaaaaaa5@hotmail.com aaaa_a@hotmail.com 991022865@gmail.com 725668844@gmail.com 82665@gmail.com 81c3988a@mailna.me I wonder if it's possible to write some sort of php function to tell how likely the first part of an email is to be "mashed"? Edit: We do send confirmation emails and run them through a 'validator'. Having a

send e-mail and check status

依然范特西╮ 提交于 2019-12-30 05:45:09
问题 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 feedback about the delivery attempt in the manner I've described above? EDIT: A respondent suggested looking for a Java library that provides the same functionality as ListNanny. I've searched around, but haven't found anything. Any idea if such a

How to catch bounced emails in PHP?

混江龙づ霸主 提交于 2019-12-21 06:56:42
问题 I want to save emails if it is bounced while sending email through PHP function mail() ? What is best way to catch that ? 回答1: First you need to send email with mail() function with the use of additional headers. You point the return email address to a mailbox where you will gather the bounced emails. The below code is an example how to achieve that. $recipient = "jack@someotherexample.com"; $subject = "test subject"; $message = "test message"; $body = "<html>\r\n"; $body .= "<body style=\

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

时光怂恿深爱的人放手 提交于 2019-12-10 02:09:41
问题 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: RECIEVER@gmail.com Received: by 10.76.154.104 with SMTP id vn8csp478308oab; Wed, 4 Sep 2013 05:04:44 -0700 (PDT) X-Received: by 10.50.22.105 with SMTP id c9mr1537992igf.36.1378296283817; Wed, 04 Sep 2013 05:04:43 -0700 (PDT) Return-Path: <bounce+a801a1

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

删除回忆录丶 提交于 2019-12-05 01:53:52
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: RECIEVER@gmail.com Received: by 10.76.154.104 with SMTP id vn8csp478308oab; Wed, 4 Sep 2013 05:04:44 -0700 (PDT) X-Received: by 10.50.22.105 with SMTP id c9mr1537992igf.36.1378296283817; Wed, 04 Sep 2013 05:04:43 -0700 (PDT) Return-Path: <bounce+a801a1.c2b37-RECIEVER=gmail.com@my-website.com> Received: from so254-63.mailgun.net (so254-63.mailgun.net.

send e-mail and check status

拥有回忆 提交于 2019-11-30 17:20:10
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 feedback about the delivery attempt in the manner I've described above? EDIT: A respondent suggested looking for a Java library that provides the same functionality as ListNanny . I've searched around, but haven't found anything. Any idea if such a library exists? Cheers, Don You can't do this reliably or consistently. What happens if your local mail

How to catch bounced emails in PHP?

烂漫一生 提交于 2019-11-30 17:03:47
I want to save emails if it is bounced while sending email through PHP function mail() ? What is best way to catch that ? Gadoma First you need to send email with mail() function with the use of additional headers. You point the return email address to a mailbox where you will gather the bounced emails. The below code is an example how to achieve that. $recipient = "jack@someotherexample.com"; $subject = "test subject"; $message = "test message"; $body = "<html>\r\n"; $body .= "<body style=\"font-family:Verdana, Verdana, Geneva, sans-serif; font-size:12px; color:#666666;\">\r\n"; $body .=