Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
This might be pretty far out there, but I thought I'd ask. I have developed a program in Laravel 4 where it is like forum where it emails the people. I was asked if there was a way to make it where the users can reply to the email and make it appear in the forum.
I know other sites have done that like Basecamp, but I didn't have to program it. Is there anyway to achieve this in Laravel?
Thanks!
Yes, it's possible, but you'll need more than just Laravel. You can pipe inbound emails to Laravel or you can use a third-party service like Mandrill's inbound email handling to accept and turn them into HTTP requests to your server.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I don't know if this can be done but I want to test through a cron job or but the laravel schedule forms from other websites, these websites are mine but independent from this project.
The purpose is to test the forms of several websites automatically to check that they work in the same way that would test a client, it is like making a bot that sends to the forms.
Thanks in advance.
Laravel Dusk (https://laravel.com/docs/8.x/dusk) is what you need to look into.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I would like my users to able to chat with one another.
I currently use angularjs as the front-end and PHP in the back-end.
any ideas?
You should be looking at different languages for this. Node.js, MongoDB and Redis is a good start.
Also, just expecting people to give you code with such a vague request is not really in line with the spirit of things here. There are plenty of good examples online and a simple Google search would give you results like this https://github.com/joni2back/spachat if you're really keen on using PHP and Angular.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is it possible to develop a system in codeigniter that is capable of receiving reply of emails as well.
Actually I want to develop email receiving feature in codeigniter .
Please guide with complete detail considering me at beiginner level.
Thanks
This involves developing a mail client application. Maybe you will search the web where you will find some open source application that you then should integrate with codeigniter.
Her is a video which can help you to get started:
https://www.youtube.com/watch?v=G-OweUqMPsY
EDIT:
This process is not so simple as you can think but if you download this code you can have a directly inside on what and how you can do it:
https://github.com/Studio182/Crystal-Mail
You can try following libraries or code to receive emails:
https://github.com/bcit-ci/CodeIgniter/wiki/IMAP
also you can user:
https://garrettstjohn.com/article/reading-emails-with-php/
https://garrettstjohn.com/article/extracting-attachments-from-emails-with-php/
hope these will help you build your app.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm making a CMS for one of my friends. She is a writer with a looots of ideas and notes. I just realized that she needs a note taking webapp inside that CMS that allows her to make notes by simply writing an e-mail to a specific e-mail address. Like Evernote: the subject would be the 'title' of the note and the body would be the content.
But I cannot figure it out how to do that – in the past few days I was thinking only and nothing came out. I need a 'trigger' which runs a PHP script but how? Do you guys have some ideas?
I would really appreciate that.
Thanks a lot.
You would need to create an email address that "pipes" to an application, such as PHP.
If you are on a WHM server, cPanel accounts can easily do this. See: http://docs.whmcs.com/Email_Piping
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to create a chatbox like gmail or facebook. What would be the best architecture to build it. Should It be good to use sockets or ajax?
If so, then would you please describe or give references of the architecture.
I'd suggest XMPP. I used it to design a chat system for within my companies software, and it worked quite well. There are plenty of XMPP libraries out there. If you were so inclined though, it it possible to use some of Google's services. Not everything needs to be written from scratch:
https://developers.google.com/talk/open_communications