IT Placement Papers Programming PHP
This category contains PHP Interview Questions and Answers |
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\"";
Only registered users can write comments. Please login or register.
|