PHP - Difference between Reply-to and Return-path in the headers of a mail function.

Difference between Reply-to and Return-path in the headers of a mail function.

Reply-to:
- It is the address where the email needs to be delivered.

Return-path:
- It specifies the when there is a mail delivery failure so where should the notification be sent.

Example:
$headers .= "Reply-To: info@info.com\r\n";
$headers .= "Return-Path: info@info.com\r\n";
PHP - How to store the uploaded file to the final location
How to store the uploaded file to the final location - Files in PHP can be uploaded using move_uploaded_file ( string filename, string destination).....
PHP - Explain type of inheritance that php supports.
Explain type of inheritance that php supports - PHP supports single inheritance.....
PHP - Explain each encryption function supported in PHP.
Explain each encryption function supported in PHP - Mcrypt() supports many functions. Few are listed below....
Post your comment