you would like to code it like this:
mail($receiver,$subject,$m
where:
$sender would be smthg like you@yourdomain.tld
$mailclient - normally used to pass on that it was mailed from within a php script, but you can set anything here like "my cool mail tool"
$prior_1 would be 1, 2 or 3 with 1 being normal, 2 being medium and 3 being high
$prior_2 is only for microsoft - just have to write normal, medium or high there...
think that should do it
regards liquidblaze
Main Topics
Browse All Topics





by: 3MAN8Posted on 2003-05-30 at 09:17:22ID: 8615348
Try this:
From: $from\nX-Mailer: PHP/" . phpversion());
$from = "you@yahoo.com";
mail ($fmail,$fsubject,$fbody,"
this fourth parameter identifiies the sending program as PHP and should hopefully negate the default from: address as set in your php.ini.
3MAN8