Forum Moderators: coopster

Message Too Old, No Replies

bouncing email

         

omoutop

9:56 am on Feb 4, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Hello all.

In a recent project, a customer asked me to create a mailing report on bouncing emails.

His mailing list is being checked on valid email syntax/form. But some emails are just fake.

Is there a way to know how many emails that were send, return back?

Thanks in advance for any info/insight

phparion

11:28 am on Feb 4, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I guess you will have to use PHP with your mail server to check the bouncing emails etc. I am not sure if there is already some built-in mechanism in mail servers to show the bouncing emails etc.

henry0

12:44 pm on Feb 4, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I do not remember where I seen it (sorry!) but I know that somewhere there is one or actually more than one class that addresses the bouncing log problem
start by checking phpclass

omoutop

1:22 pm on Feb 4, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



ok henry... i will start digging ... thanks both of you

jatar_k

2:22 pm on Feb 4, 2008 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



you could also use a service to check that, there are a bunch around

if each message had an id attached to it and was sent from a specific address then you could process that address using php and check the embedded id in the message against your db/list.

you could use something like [procmail.org...] as well

mark_roach

2:47 pm on Feb 4, 2008 (gmt 0)

10+ Year Member



I have written something recently in perl to do this job.

As jatar_k says you can insert a hidden id in the header records when you send the email and send from a unique email address. It should then be a relatively easy task to use pop3 to check the mailbox for any bounced emails.

omoutop

3:24 pm on Feb 4, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



@Jatar_K

thats exactly what i am trying to avoid at all costs...

i had bad experience with proc in the past :)

jatar_k

5:39 pm on Feb 4, 2008 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



well you could do the same with php functions, well not quite as seamlessly but it should be fine