What other things can you possible put in the MIME headers or whatever when sending email using php.
$fd = popen($mailprog,\"w\");
fputs($fd, \"To: $email\n\");
fputs($fd, \"From: $adminName\n\");
fputs($fd, \"Subject: Some topic\n\");
fputs($fd, \"X-Mailer: PHP Script\n\n\");
fputs($fd, \"Name: test\n\");
fputs($fd, \"Email: test\n\");
fputs($fd, \"Show Email: test\n\");
fputs($fd, \"Comments: test\n\");
pclose($fd);
exit;
Isn\'t there Organization or something like that too? ALso, I saw someone put comments in the header and X-abuse or something
can you help me out with that?