irshad
irshad

Reputation: 91

How to send / Receive mail with "qmail" in PHP

i want to send and receive mail using qmail in php. i have never used it before tell me how is it possible.

Thanks in Advance...

Upvotes: 2

Views: 1644

Answers (1)

Quentin
Quentin

Reputation: 943939

It is just another MTA. You configure PHP to send mail through it as you would any other SMTP server.

To handle incoming mail with PHP either have qmail deliver it somewhere and then poll that location, or get an MDA (such as procmail) that can pass incoming mail through a PHP script.

Upvotes: 0

Related Questions