Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

verify email opened

Tags:

php

email

once we send email from php using mail() function, is there any way to check either mail is open or not?

may be any type of database insertion code in email..?

or calling any function from website?

any possibility.........

i search on internet all the day but did't found any ans.

Thanks

like image 431
air Avatar asked Jan 07 '10 18:01

air


People also ask

How do I prove an email has been opened?

To find out when an email you sent was opened, you can request a read receipt. A read receipt is sent to you as an email with the time and date of when your message was opened. Want to get more out of Google apps at work or school?

Can I tell when someone opens an email?

If you're sending an important email to someone, find out when they've opened it by setting up a read receipt. A read request is sent to every recipient in the To and Cc fields, but not to recipients in the Bcc field, mailing lists, or aliases.


2 Answers

Small images - called Web Bugs - are the only direct way as Szere Dyeri points out, but they are increasingly frowned upon and blocked by every major mail client for privacy reasons now. I would not consider them a reliable way to tell whether an E-Mail has been read any more.

There is a legitimate way to request a read receipt by adding the following header to the E-Mail:

Disposition-Notification-To: [email protected]

Sending of this notification can be turned off by the recipient of course.

like image 75
Pekka Avatar answered Nov 23 '22 18:11

Pekka


Add an invisible small sized image to the email content. And, let the image point to a unique url on your website. You will know that email is opened once that url is accessed. But this will not work in email clients that does not show images in the emails by default.

I found this web service called Get Notify. They claim they do this for free but you need to verify for yourself.

like image 40
Szere Dyeri Avatar answered Nov 23 '22 17:11

Szere Dyeri