On Friday 28 January 2005 10:09, David Edwards wrote:

> I have a fairly simple script written that uses the mail() function on a
> client site hosted at Interland. I have used a similar script quite a few
> times before with no problem. However although the script generates no
> errors, no emails appear at their intended destination. Interland support
> has not been that helpful and they did suggest I try the '-f' option in the
> header. That did not work either. Has anyone seen this before, I am running
> out of ideas. The mail portion of the script is below:
>
> $headers .= "MIME-Version: 1.0\n";
> $headers .= "Content-type: text/plain; charset=iso-8859-1\n";
> $headers .= "X-Priority: 1\n";
> $headers .= "X-MSMail-Priority: High\n";
> $headers .= "X-Mailer: php\n";
> $headers .= "From: $emailfrom\n";
>
> $mailsent = mail($emailto, $subject, $msg, $headers,"-f" . $emailfrom);

1) Use the proper delimiters between headers -- "\r\n"
2) Check your mailserver logs

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
New Year Resolution: Ignore top posted posts

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to