SMTP :: booleandelheader ( string name )
Returns TRUE if has been successfully deleted, FALSE if not.
Notice: delheader function will delete all string name header values if you have multiple entries with the same name.
Example:
$mail = new SMTP;
// add
$mail->AddHeader('X-Whatever', 'the value');
// delete
$mail->DelHeader('X-Whatever');