On Friday 16 July 2004 06:06, PHP User wrote:
> I am trying unsuccessfully to set up an email form and as far as I know my
> code is fine, but it won't send. I suspect that it's because my server
> requires authentication.
Well does it or does it not require SMTP AUTH? If it does then the standar
On Tue, 19 Jun 2001, Jason Murray wrote:
> Hi tim,
>
> Change this:
>
> > mail($toaddress, $subject, $mailcontent, $fromaddress);
>
> mail ($toaddress, $subject, $mailcontent,
> "From: Real Name <$fromaddress>\nReply-to: $fromaddress\n");
Yeah, notice where you'll be adding various
At 19.06.2001 04:45, you wrote:
>Hi tim,
>
>Change this:
>
> > mail($toaddress, $subject, $mailcontent, $fromaddress);
>
>mail ($toaddress, $subject, $mailcontent,
> "From: Real Name <$fromaddress>\nReply-to: $fromaddress\n");
>
> > I've spoken to the hosting company, they say they wil
> $fromaddress = "[EMAIL PROTECTED]";
> mail($toaddress, $subject, $mailcontent, $fromaddress);
Should probably be:
$fromaddress = "From: [EMAIL PROTECTED]";
mail($toaddress, $subject, $mailcontent, $fromaddress);
Splitting hairs a bit, a more accurate name for $fromadress would be
$headers - i
Hi tim,
Change this:
> mail($toaddress, $subject, $mailcontent, $fromaddress);
mail ($toaddress, $subject, $mailcontent,
"From: Real Name <$fromaddress>\nReply-to: $fromaddress\n");
> I've spoken to the hosting company, they say they will not provide any
> assistance to PHP script
5 matches
Mail list logo