0

I don't know whether or not it's a good question :( But my intention is to know if it is possible to to build an email client application like Thunderbird or OutLook . And can we able to configure/create a Web Application in PHP?

Please let me know your thoughts! Thanks in advance!!!

Byron Whitlock
  • 49,611
  • 27
  • 114
  • 164
coderex
  • 24,487
  • 43
  • 111
  • 167

5 Answers5

3

I am not sure that I understand the question, but here a couple of notes :

Community
  • 1
  • 1
Pascal MARTIN
  • 374,560
  • 73
  • 631
  • 650
1

Uh, sure, but why would you do so? Thunderbird is free and open-source. You could just use that. Unless you've a compelling reason to develop an entirely new e-mail client, it's better not to reinvent the wheel.

Plenty of open-source webmail clients already exist, too. RoundCube is one of the prettiest.

ceejayoz
  • 165,698
  • 38
  • 268
  • 341
0

PHP is usually used as a server-side scripting language to build web applications. It does have the functionality that you need to be able to send email messages from a properly configured server.

Thomas Owens
  • 107,741
  • 94
  • 299
  • 427
0

The mail should definitely be sent from the server not the local machine, but its perfectly ok to create a webmail system. Also you can retrieve incoming mails from your mail server. Actually there are webmail clients on the market that you can use. I personally like Squirrel Mail

Cem Kalyoncu
  • 12,631
  • 4
  • 38
  • 60
0

I would recommend in your case that you look at using PHP as core backend and (x)html+javascript+ajax for frontend and front-to-backend communications.

Ajax is very good for dynamic pages where you do not want page reloads etc. You could have a local smtp server to send the email, but most internet providers would not allow this. If the later is the case you need to use the internet providers smtp, alternatively allow the configuration of smtp within the user interface.

PHP has builtin classes to send mail which makes this process easy in either case. Receiving mail and parsing them correctly is just a matter of understanding the correct protocols. (pop3 / exchange and so on).

I know this wasn't a straightforward answer, but I hope it gave at least some insight.

Jonas B
  • 2,293
  • 1
  • 16
  • 25