473,748 Members | 8,530 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Email bounce backs

VK
Hello:

Since our application uses ASP, I am posting this in this group. Pardon
if wrong group.

Our product/application replies a lot on bounced back emails, that way
we correct this and let the client know. Off late we are receiving very,
very few of these emails. It turns out, with amount of spamming going on
most of the companies have set up filters. As a result, most of emails,
even though incorrect don't get bounced back.

Is there another way to track bounced back emails?

Thanks.
Vani

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 19 '05 #1
7 6074
> Is there another way to track bounced back emails?

ASP in and of itself can't track anything like this. And sorry, if the
remote mail servers are just swallowing up your messages and stuffing them
into dev/null, there is no way for any other system to track them either.
They're just gone.

If you have a lot of messages like this that are being rejected because the
recipient is invalid, then it might be telling you something (e.g. get a
more reliable, read: OPT IN list!).

If your content is of any value, you should be able to track *successful*
e-mails (because they will go to your site with a referral link, etc). The
delta represents unsuccessful (regardless of the reason). You can also set
CDO to demand return receipts so, even if the e-mails are not "successful "
per se, and are merely deleted by the recipient, you can at least know they
were delivered successfully. See http://www.aspfaq.com/2252 for details.

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/
Jul 19 '05 #2
VK
To elaborate a little more, emailing part is controlled by users. Each
user nominates (via entering their email address) their "raters"(ab out
10 to 15 of them) and each group has about 40-50 such users. This would
be for one project and we have more than one, online.

This volume is high to monitor read receipts.

thanks.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 19 '05 #3
> This volume is high to monitor read receipts.

HUH? Originally, you said:
Our product/application replies a lot on bounced back emails, that way
we correct this and let the client know.


So, can you describe the difference between receipts and bounces? If you
send out 5000 e-mails, and half or failures, you are either going to have to
process 2500 rejects or 2500 successes. I'm not sure how volume impacts
choosing one way over another; though what I previously said still stands:
you can't rely on failed deliveries to be reported.

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/
Jul 19 '05 #4
VK
Bounced backs emails are those that are undeliverables - they return to
our inbox stating as undeliverables. that way we know that this email is
incorrect and hence we were able to track emails that were faulty.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 19 '05 #5
Look, I was only suggesting an alternative. If it's "too much," then don't
use it. Simple, huh?

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


<VK> wrote in message news:#W******** ******@TK2MSFTN GP11.phx.gbl...
Bounced backs emails are those that are undeliverables - they return to
our inbox stating as undeliverables. that way we know that this email is
incorrect and hence we were able to track emails that were faulty.

Jul 19 '05 #6
You won't find your easiest solution using ASP. Export the bounce back
messages to a some sort of a datasource and then compare it against your
database of e-mail addresses to filter out the bounce backs.

Ray at work

<VK> wrote in message news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
Bounced backs emails are those that are undeliverables - they return to
our inbox stating as undeliverables. that way we know that this email is
incorrect and hence we were able to track emails that were faulty.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Jul 19 '05 #7
> You won't find your easiest solution using ASP. Export the bounce back
messages to a some sort of a datasource and then compare it against your
database of e-mail addresses to filter out the bounce backs.


Not to belabor the point, but VK expects to somehow track the messages that
are sent to invalid addresses but are *NOT* bounced, but rather merely
swallowed by the remote mail server (/dev/null, bit bucket, recycle bin,
circular file, what have you).

So my suggestion was to track the *successful* IMHO, if he's getting enough
bounces that it's an issue, volume either way shouldn't be an inhibitor.

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/
Jul 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
4966
by: news | last post by:
There's all kinds of ways to validate an email address to make sure it's well formed and whatnot, but what about checking to see if it's a valid e-mail account? Like how you can use checkdnsrr() to check to see if a URL is valid. I know finger used to be used at one time, no? But server block finger requests, and I'm not sure many e-mail accounts out there are even fingerable type accounts anyway. Thanks for any suggestions!
2
1979
by: Rob Imbeault | last post by:
Hi Guys, I am building a script that catches emails. I have access to the email source and I would like to distinguish between bounced emails, auto-replies and real replies. Is there a standard that all servers follow for rejected emails. I am looking for a unique string I can search for like "Mail Administrator" or "Failed email." Does anyone know or know where I can look? Cheers
7
12453
by: Monty | last post by:
I've written a simple e-newsletter app using the PHP mail() command. I want to be able to deal with bounce-backs if a member's email is no longer working or is using an old account. I'm using a Red Hat Linux server with Sendmail and Apache. I've seen mention of using Procmail or filtering mail to a certain account through a PHP script, but, can't find detailed instructions on how this is done. Can anyone let me know or point me toward...
3
2216
by: Darren Clark | last post by:
HI, I am after some assistance in finding what is the best way to parse through bounce back text...... because each server is different i cant really depend on Line x being the line where the error message is... the only reliable way i can think of it so search for the error message by name,
4
2087
by: MostlyH2O | last post by:
Hi Folks, I have been going in circles for weeks - trying to find the best way to send and manage emails from my ASP application. The email page might send as many as 500 individual emails at a time. The emails are in the user database for the website. It's used for sending group notices and passwords to the members. I'm currently using CDONTS - which works ok - although it is very slow to send 500 emails. (each email is customized...
0
2830
by: westlog104 | last post by:
Hi, I have a problem with CDO.Message bounce back. when the email bounce back, the bounce back email will send back to address: Sender or
0
874
by: alanwo | last post by:
Hi Experts, I am trying to send out email and bounce back to different from "FROM" email address: Dim webmail As New System.Net.Mail.MailMessage("B@FROM.com", "ghyddfhg@gmail.com", "hello", "return errors to") 'webmail.Headers.Add("Errors-To", "a1@a1.com") 'webmail.Headers.Add("X-Sender", "a1@a1.com") webmail.Headers.Add("Sender", "a1@a1.com")
1
1794
by: Stuart Harden | last post by:
We use Exchange 2007, but asp.net programs we have written to send out the mail. Is there an asp.net control to request the bounce backs be to a specific address? We can of course do this on the client end; it would be "simple" enough to have the logged in "from" person set a filter on their incoming mail software which would forward the bounce backs to the desired address, but, I have been asked if I can do this from an administrative...
15
3376
by: Florian Lindner | last post by:
Hello, is there a function in the Python stdlib to test if a string is a valid email address? Thanks, florian
0
8989
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9537
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9319
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9243
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8241
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4599
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4869
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2780
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2213
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.