Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have a PHP web application hosted on managed cloud server that doesn't provide mail server. I need two email addresses. One just for sending automated emails (Transaction email) and one for receiving and sending emails manually. What are my solutions? My application will send more than 500 emails per day.
Check out Mailgun
Laravel docs
Easiest:
Create a GMail AC enable POP3 email forwarding in the SETTINGS and you use the settings within the PHP code and you are done.
Best Solution:
Try large scale solutions (cloud based):
sendgrid.com or mailgun.com they are best for large email blast.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Actually our client has N number of websites and many of the times if something went wrong like site down,loading slow or database error occured, in such cases we don't get immediate updates.
Would you please help to suggest any web monitoring tool which will do work for us and send SMS & Email notification immediately if any of the above case occurs?
Yes, Basically you are looking for monitoring tools which will monitor all your resources like your web server, cup speed and database services and etc.
For monitoring i would recommend New Relic tool for this activity. Currently we are using the same tool to monitor our live websites details and accordingly revert traffics and other services with it.
As request, it also has functionality for sending notifications via email.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Interested in creating a web-based CRM application that can do metrics based on emails. I'm using Laravel (PHP) for the creation of this application and the client is using Google Business Apps (Gmail). Gmail provides an API that allows you to take different actions. My main interest is running metrics and viewing stats on the customer emails (e.g. response times, most active customer, least active customer, etc).
The other approach is to somehow download all the emails to a MySQL database and query them directly.
Can someone suggest a method to query my Gmail email from Laravel that involves these methods or even a different method?
Why not try using IMAP? This way it won't be Gmail specific and you could use almost any email provider. From there you could parse out all the info you need from the email headers (sender, date, subject, etc) and store it in a DB. PHP has a module for IMAP but there are also some nice composer packages such as Fetch that will help speed up development.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have a web app built on zend that send email notifications for different events (signup, someone follows you etc...). It is using php mail. The emails get sent out as part of action hooks that fire at various events. I am looking for recommendations for a service that will take over the sending of the emails. Thanks in advance!
we use http://sendgrid.com/ at our shop.
Amazon SES or Sailthru
I do like sailthru, they can host your email templates, logs of every sent email (so you can resend), open rates, etc. It's a white listing service and their PHP API is easssy to use.
Postmark is quite nice, with a very powerful API.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I want to make a Facebook like SMS sending and receiving service. Are there any PHP API to do that? I want to use a specific number like Facebook.
Note
Sending SMS through E-mail is possible but how can I receive SMSs through my PHP application? I am searching for a free PHP API without any external hardware to do that. Is it possible?
In case your search for free doesn't work out:
I've recently been playing around with Twilio: http://www.twilio.com/
And they've recently cleaned up their API:
http://blog.twilio.com/2010/08/announcing-the-new-twilio-api-version-2010-04-01.html
They also have contests running. Maybe your app will fall into a category and land some free marketing :)
If you want it to work in India, use smsgupshup.com's API to create SMS applications.
This software will let you receive sms in PHP: Receive SMS
It connects to a 3G/GSM modem or dongle and will automatically post incoming SMS messages to your website where you can handle them using a simple PHP script
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Here is what i try to do, almost like wordpress or video, i like to create/generate and pop email account on my server, where you can send email (text) or/and attached picture and automate the process of posting that on a blog, or just adding that to a folder for a slideshow.
Some time ago, i made a huge research about that, found some abstact solution that is more a concept that code/api or php script
So i am looking for a library, a api, a script et framework that can do that. PHP ot javascript favorised !
Thanks in advance !
almost perfect solution
Using PHP to read email in a POP3 mailbox
and a download attachement solution here