tags:

views:

25

answers:

2

What do I need to install prior to be able to send email with PHP.

Thanks

+2  A: 

you have to configure "[mail function]" section in php.ini.

First of all you have to have SMTP support for send&receive e-mails. Second, you have to configure "SMTP" and "smtp_port" values in php.ini file.

Burçin Yazıcı
So that means that I would only be able to have one mail server per php installation?
Robert de Klerk
php.ini comments says you are right.
Burçin Yazıcı
A: 

I got it sorted out. I had to download the pear modules and include them in the working directory

Robert de Klerk