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'm developing a web app in php using codeignitor. I want to implement "reply to this email with approved in email body to update the app." feature.
Nowadays wen web apps send email for approvals, we can directly reply to email so the app will get updated once you send the reply. How does this feature implemented? I searched the web couldn't get any clues.
You can create a script polling the inbox of a specific email address and approving emails it got answer from. You would then need to set up cron jobs to run the script periodically.
Related
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 7 years ago.
Improve this question
i am developing an application in which i have to send emails on behalf of my clients
can we use any service like aws ses or vero
if we use php mail function it will send mail in spam due to change in from emails
after a lots of research i got to know about aws ses reply to option .
any other better approach for this ?
There are many 3rd party options such as https://mandrillapp.com that allow you to send emails via their API.
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 7 years ago.
Improve this question
I'm creating a website that requires user to sign up in order to get an account.I was just wondering, what type of api/code/etc do I need to use to send a verification code to directly to their phones.Once they receive the message they should be able to send like a text to that number (ex: send yes to confirm to the number #987) and the account automatically gets confirm from the text message.
Here you've got a list of SMS APIs: http://blog.mashape.com/list-of-50-sms-apis/. It's from 2013 though, some of them might have changed. You do have free APIs like http://textbelt.com/ but it depends on where do you want to send those SMSem, different providers in different countries have different gateways. I think it's impossible to answer you in 1 sentence.
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.
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 am working on a login system that will comply with COPPA regulations by sending an email to a parent's email account a day after registration.
I was wondering about the best way to do this.
I have the sign up time stored in a database column.
I'm using SMTP and PHP Mailer.
Do I need to create a cronjob on the server, or is there a better way
to automate the process of sending a delayed email, preferably using PHP?
If you want to do this all yourself then a cron job is probably going to be the best bet.
However, if you want to move onto a third party email service, I'd just mailchimp. You can then work with the Mandril PHP API which allows you to send messages (I assume emails) with a send_at parameter.
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 have been making a website for a client and he has requested two things. The first is to send an email when a job is assigned to a users accounts and the second is to enable a user to recover a lost password for a the user via an automated email. The website has been coded using HTML5 CSS PHP and SQL for the database back end.
I am unsure of how to set up this function to send this automated email
any help would be greatly appreciated
Thank You
Did you google it?
Use the mail function. http://php.net/manual/en/function.mail.php
Im using phpmailer for that job. :-)
http://phpmailer.worxware.com/