├── vendor ├── phpmailer │ └── phpmailer │ │ ├── VERSION │ │ ├── phpdoc.dist.xml │ │ ├── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ └── POP3.php │ │ ├── language │ │ ├── phpmailer.lang-zh_cn.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-zh.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-am.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-rs.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ └── phpmailer.lang-fr.php │ │ ├── composer.json │ │ ├── COMMITMENT │ │ ├── SECURITY.md │ │ ├── get_oauth_token.php │ │ ├── UPGRADING.md │ │ └── README.md ├── autoload.php └── composer │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_static.php │ ├── LICENSE │ ├── autoload_real.php │ ├── installed.json │ └── ClassLoader.php ├── .gitattributes ├── Snapshot.JPG ├── History_Logs.JPG ├── Databse Design.JPG ├── images ├── sort_asc.png ├── sort_both.png ├── sort_desc.png ├── sort_asc_disabled.png └── sort_desc_disabled.png ├── email_track.php ├── README.md ├── js └── dataTables.bootstrap.min.js ├── email_track_database.sql ├── css ├── dataTables.bootstrap.min.css └── jquery.dataTables.min.css ├── detail_status.php └── index.php /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.7 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Snapshot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradipkumarraushan/How-to-track-email-open-or-not-using-php-and-PHPMailer/HEAD/Snapshot.JPG -------------------------------------------------------------------------------- /History_Logs.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradipkumarraushan/How-to-track-email-open-or-not-using-php-and-PHPMailer/HEAD/History_Logs.JPG -------------------------------------------------------------------------------- /Databse Design.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradipkumarraushan/How-to-track-email-open-or-not-using-php-and-PHPMailer/HEAD/Databse Design.JPG -------------------------------------------------------------------------------- /images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradipkumarraushan/How-to-track-email-open-or-not-using-php-and-PHPMailer/HEAD/images/sort_asc.png -------------------------------------------------------------------------------- /images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradipkumarraushan/How-to-track-email-open-or-not-using-php-and-PHPMailer/HEAD/images/sort_both.png -------------------------------------------------------------------------------- /images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradipkumarraushan/How-to-track-email-open-or-not-using-php-and-PHPMailer/HEAD/images/sort_desc.png -------------------------------------------------------------------------------- /images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradipkumarraushan/How-to-track-email-open-or-not-using-php-and-PHPMailer/HEAD/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradipkumarraushan/How-to-track-email-open-or-not-using-php-and-PHPMailer/HEAD/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpmailer/phpmailer/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /email_track.php: -------------------------------------------------------------------------------- 1 | prepare($query); 8 | $statement->execute([''.$_GET["code"].'','yes',''.date("Y-m-d H:i:s", STRTOTIME(date('h:i:sa'))).'']); 9 | 10 | } 11 | 12 | ?> 13 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/phpdoc.dist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PHPMailer 4 | 5 | docs 6 | utf8 7 | 8 | TODO 9 | 10 | 11 | 12 | docs 13 | 14 | 15 |