summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2020-12-05 08:33:44 +0100
committerSanto Cariotti <santo@dcariotti.me>2020-12-05 08:34:07 +0100
commit74548229b32411df705c4bd6f82e4a2586dad1fd (patch)
treee1a4abcd3db65886acda6b990b674fb9418cfc0a
parentf7fc1d5dfd8f5ca2aac10554ef13f6ecb082f998 (diff)
docs: change slogan
-rw-r--r--README.md2
-rw-r--r--src/main.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index acc4c45..04ac772 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# rsanta - Make secret santa with your friends
+# rsanta - Be your friends' Secret Santa
You must set environments variables for smtp:
```
diff --git a/src/main.rs b/src/main.rs
index b30231a..2d4b5ac 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -20,7 +20,7 @@ fn main() {
let matches = App::new("rsanta")
.version("0.1.0")
.author("Santo Cariotti <santo@dcariotti.me>")
- .about("Make secret santa with your friends")
+ .about("Be your friends' Secret Santa")
.arg(
Arg::with_name("file")
.short("f")
@@ -111,7 +111,7 @@ fn main() {
)
.to(format!("{} <{}>", name, email).parse().unwrap())
.subject("Secret Santa!")
- .body(format!("You're the Secret Santa of:\n{}", gift_to_name))
+ .body(format!("You are the Secret Santa of:\n{}", gift_to_name))
.unwrap();
match mailer.send(&mail) {
Ok(_) => println!("Email sent successfully to {}!", email),