How do you build a web based email client using PHP?

后端 未结 8 1059
无人及你
无人及你 2020-12-08 14:50

I would like to learn how to build a web-based email client in PHP (similar to yahoo and gmail).

Does anyone know how I can get started with this?

I would li

8条回答
  •  感动是毒
    2020-12-08 15:35

    If you're not using an external mail service (like Gmail) you will need to configure your own server to store and send email. Here is a tutorial for using Postfix (for sending mail) and Dovecot (for accessing mail via IMAP). This tutorial also explains setting up a webmail system in SquirrelMail. You could do this, or, if you really want to develop your own system you could write a PHP application to access your mail.

    Good Luck!

提交回复
热议问题