SMS Messages to Email #sms email
Edit
by Roch Guillot - 9 years ago (2015-09-02)
Get SMS Messages
| How do I get SMS Messages to email? |
Ask clarification
2 Recommendations
SMSGateway: API to send SMS messages using an Android gateway
This package provides an API to send SMS messages using an Android gateway.
It can handle requests to send SMS messages to a given phone number.
The package can put the messages in a local queue storing the message data in a flat-file structure.
It can also handle HTTP requests as an API server that uses callback functions to process events like when new messages are received, updates in the status of queued messages, and a given timeout period passed after the last time it sees the presence of a phone device.
| by André Liechti package author 175 - 2 years ago (2022-10-12) Comment
Using an open source Android SMS Gateway App which is described in the documentation, you will be able to send and receive SMS using your Android phone with this simple PHP class. Data are stored in a flat-file structure, and some examples are provided. Receiving messages and status can by handled by callback functions that you define yourself.
Implement the callback function when receiving messages and send an email (for example using the PHPMailer class), and you will be done ! |
This class can be used to parse and decode MIME e-mail messages.
It supports decoding single RFC 2822 MIME messages or archives that aggregate multiple messages in the mbox format.
The decoded message data is returned as an array that describes one or more messages found in a message file or data string.
The bodies of multipart messages can be decoded into distinct sub-messages.
The message body data can decoded and saved to separate files, so the class can handle messages larger than the available memory.
The parser can tolerate some syntax errors in malformed messages that are not compliant with RFC 2822.
An auxiliar class is provided to parse and extract e-mail address lists from message headers.
| by Manuel Lemos package author 26695 - 9 years ago (2015-09-02) Comment
You can configure your mobile phone to forward messages by email.
On Android you can use an app like SMS@Email to do that for you.
On iPhone you can configure your settings in Messages then Recieve At, and then use Add An Email below.
Then in PHP you can use this class to parse messages received for instance in a POP3 mailbox. |