Re: [PHP] Email Forms

2004-07-15 Thread Jason Wong
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

[PHP] Email Forms

2004-07-15 Thread PHP User
Hi, 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. Running my script on my Windows machine I get the following. Warning: mail() [function.mail

RE: [PHP] email forms

2001-06-19 Thread Philip Olson
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

RE: [PHP] email forms

2001-06-19 Thread Andreas D. Landmark
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

RE: [PHP] email forms

2001-06-19 Thread Jon Haworth
> $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

RE: [PHP] email forms

2001-06-19 Thread Jason Murray
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

[PHP] email forms

2001-06-18 Thread Tim Thorburn
Hello, First let me say its good to have this list back up and running - and now time for the questions to keep rolling in. I've got an email form setup on a site (well actually many of them) to collect basic information from people which will eventually be entered into our local database and