I'm having quite a few problems with the mail() function in PHP. The code I am using is as follows;
mail("$EmailSending","LinksSQL.net Plugins/Services Update...", $Message,
"From: $FromEmail ($From)\r\n"
."Reply-To: $FromEmail ($From)\r\n"
."MIME-Version: 1.0\r\n"
."Content-type: text/html; charset=iso-8859-1\r\n");
The most annoying thing is, that it works fine in another part of the script... yet it just sends as plain text every where else. Anyone got any ideas?
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
Code:
$EmailSending = $row['Email']; mail("$EmailSending","LinksSQL.net Plugins/Services Update...", $Message,
"From: $FromEmail ($From)\r\n"
."Reply-To: $FromEmail ($From)\r\n"
."MIME-Version: 1.0\r\n"
."Content-type: text/html; charset=iso-8859-1\r\n");
The most annoying thing is, that it works fine in another part of the script... yet it just sends as plain text every where else. Anyone got any ideas?
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates

