[PHP] Newbie Mail() Question...

2002-11-27 Thread Chase
Is there a way to have an email sent to a specified email address either when a page is accessed, or when a file is downloaded? Maybe I should just be logging the info into a table? Basically, I am trying to set up a secure site that would send the sysadmin an email when a file has been

RE: [PHP] Newbie Mail() Question...

2002-11-27 Thread Rich Gray
-Original Message- From: Chase [mailto:[EMAIL PROTECTED]] Sent: 27 November 2002 14:24 To: [EMAIL PROTECTED] Subject: [PHP] Newbie Mail() Question... Is there a way to have an email sent to a specified email address either when a page is accessed, or when a file is downloaded? Maybe I should just

[PHP] Newbie mail () question

2002-11-22 Thread Duncan Ellwood
I have just built a simple formmail script that validates certain fields and then if alls well mails the information to the client's email addressand displays some confirmatin html. This is all fine except for one minor issue. When I collect the email to check it looks OK etc the header From : in

RE: [PHP] Newbie mail () question

2002-11-22 Thread Cesar Aracena
PROTECTED]] Enviado el: viernes, 22 de noviembre de 2002 13:30 Para: [EMAIL PROTECTED] Asunto: [PHP] Newbie mail () question I have just built a simple formmail script that validates certain fields and then if alls well mails the information to the client's email addressand displays some confirmatin html

Re: [PHP] Newbie mail () question

2002-11-22 Thread Steve Keller
At 11/22/2002 04:30 PM, Duncan Ellwood wrote: Can I personalise this a bit to display the From: as the email address that the user has supplied i.e $Email You can specify the FROM field in the headers before you call the mail() function. It's all in the manual.