Interview Questions

What type of headers have to be added in the mail function to attach a file?

PHP Interview Questions and Answers


(Continued from previous question...)

What type of headers have to be added in the mail function to attach a file?

$boundary = '--' . md5( uniqid ( rand() ) );
$headers = "From: \"Me\"\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: multipart/mixed; boundary=\"$boundary\"";

(Continued on next question...)

Other Interview Questions