[PHP] Help with e-mail

2003-01-21 Thread Dankshit
Is there a way to autenticate an SMTP server in my PHP.ini??? In my development site, i need to autenticate a SMTP, but in the PHP.INI does not have an option to autenticate..does anybody has any solution for this?? Thanks, Rodrigo

Re: [PHP] Help with e-mail

2003-01-21 Thread Jason Wong
On Tuesday 21 January 2003 20:13, Dankshit wrote: Is there a way to autenticate an SMTP server in my PHP.ini??? In my development site, i need to autenticate a SMTP, but in the PHP.INI does not have an option to autenticate..does anybody has any solution for this?? There is at least one

[PHP] Help with e-mail form with server-side written in php?

2002-06-26 Thread Chris Hounsell
I seem to be having an issue with an e-mail form that I have created for registration purposes with the server-side being written in PHP! I've tested the e-mail form using numerous browsers and operating systems including Microsoft, Netscape, Unix, and Linux! Everytime I test the form, it works

[PHP] Help with e-mail...

2002-04-03 Thread Chuck \PUP\ Payne
I have just install a program called Web Calendar. It suppose to be able to send reminders via e-mail but I am not sure if PHP is set up to send e-mail or what is happening. I have turned on debugging and it is showing that there are remembers but it not sending anything. Is there a simple test

RE: [PHP] Help with e-mail...

2002-04-03 Thread Rick Emery
send an email to yourself: ?php mail([EMAIL PROTECTED],test subject,This is my test message,From: [EMAIL PROTECTED]\n) ? -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 3:26 PM To: PHP General Subject: [PHP] Help with e-mail... I

Re: [PHP] Help with e-mail...

2002-04-03 Thread Chuck \PUP\ Payne
]\n) ? -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 3:26 PM To: PHP General Subject: [PHP] Help with e-mail... I have just install a program called Web Calendar. It suppose to be able to send reminders via e-mail but I am

Re: [PHP] Help with e-mail...

2002-04-03 Thread Miguel Cruz
On Wed, 3 Apr 2002, Chuck PUP Payne wrote: Thanks! I was able to send an e-mail so now I have to figure out why this guy script isn't sending reminders If it's going to send mail at arbitrary times in the future, something needs to make it run at those times. Does it come with a component

[PHP] Help on e-mail attachments retrieval adn ZIP uncompression.

2001-09-03 Thread Carlos Fernando Scheidecker Antunes
Hello Everybody, I have a software writen in Delphi which I am migrating to Kylix but I would like to do it in PHP instead. What the software does is to access an e-mail address and retrieve the messages saving the files ending with .zip to a local directory. After that, it decompresses the

RE: [PHP] Help on e-mail attachments retrieval adn ZIP uncompression.

2001-09-03 Thread Richard Heyes
1) How to retrieve messages from a POP3 mailbox and save only the ZIP files attachments? A couple of ways. 1. Use the imap (it does pop3 too) extension to connect to the mail server, parse the mails and extract the zip files. 2. Use mime decoding php scripts. There's one I've just committed