View previous topic :: View next topic |
Author |
Message |
woody03 -
Joined: 16 Apr 2004 Posts: 103 Location: U.K>West Midlands>Walsall,
|
Posted: Sat May 01, 2004 3:59 pm Post subject: Mail settings |
|
|
Does abbyss have Mail settings so i can use PHP scripts to send emails?
If so how would i set them up?
Woody _________________
 |
|
Back to top |
|
 |
iNaNimAtE -
Joined: 05 Nov 2003 Posts: 2381 Location: Everywhere you're not.
|
Posted: Sat May 01, 2004 11:41 pm Post subject: |
|
|
Two methods:
1. Local mail function. Since you're running Windows, there is no included mail function. There is a third-party application called BLAT that you can get which will allow you to send mail via PHP script.
3. SMTP Server. Download a mail server or stand-alone SMTP server, and configure the script to send via that. Note: Not all scripts support SMTP; but a lot do. _________________ Bienvenidos! |
|
Back to top |
 |
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Sun May 02, 2004 5:34 pm Post subject: Re: Mail settings |
|
|
woody03,
PHP on Windows can send mails using your ISP mail server. All you have to do is to open php.ini and to set value of the line starting with SMTP= to
Code: | SMTP=your-isp-smtp.isp.com |
where your-isp-smtp.isp.com is the outgoing mail server (SMTP server) you used when you've configured your mail client (such as Outlook.) _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
|