A utility for sending text alerts via email
All US cellular providers allow someone to send and recieve sms messages via email. Leveraging this, you could send "push-like" alerts out, if you have access to an email server.
Let's say your phone number is (612)-555-0111 and your carrier is Verizon, your number would have an email address of 6125550111@vtext.com.
Let's also say you want to send yourself an alert when your pizza order changes status at your favorite local pizza place. You could build yourself a little web scraper that would keep track of your current orders and when the status changed you could send the updated status to your phone by emailing the above.
```rust use cheap_alerts::{Carrier, Destination, Sender}; use std::sync::atomic::{AtomicU8, Ordering};
static STATUS: AtomicU8 = AtomicU8::new(0);
fn main() {
let mut current: Option
fn determine_status(val: &AtomicU8) -> Option<&'static str> { match val.load(Ordering::Relaxed) { 1 => Some("Pending"), 2 => Some("Cooking"), 3 => Some("On the way"), 4 => Some("Complete"), _ => None, } }
fn sendupdate(new: &str, old: &str) { let mut sender = Sender::builder() .address("junk@example.com") .stdout() .expect("failed to create sender"); let dest = Destination::new("6125550111", &Carrier::Verizon); sender .sendto( &dest, &format!( "šššššššš\nPizza Update: {} -> {}\nšššššššš\n===========\n", old, new ), ) .expect("failed to send notification"); }
```
The email portion is built on top of lettre
and there are 3
options for the sender
sendmail
cli tool for sending an email&str
) and it will use TLS to send the message