From 703079974f0245015c585533ee551d9117324397 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 10 Feb 2022 11:01:00 -0300 Subject: Feat: minimailer: increase verbosity and adds variable in the template --- minimailer | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/minimailer b/minimailer index 09c66ae..8eadd8a 100755 --- a/minimailer +++ b/minimailer @@ -12,7 +12,8 @@ To: recipient From: myself@mydomain Subject: Email Test using MSMTP from File -Hi $recipient! This is an automated message. +Hi $recipient! This is an automated message to remind +that your email $address is in our database. King regards, Myself @@ -54,6 +55,9 @@ cat $RECIPIENTS | while read recipient; do # https://linuxconfig.org/extract-email-address-from-a-text-file address="`echo $recipient | sed -r 's/\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}/\n&\n/ig;s/(^|\n)[^@]*(\n|$)/\n/g;s/^\n|\n$//g;/^$/d'`" - sed -e "s/\$recipient/$recipient/g" $TEMPLATE | \ + echo "sending to $address..." + + sed -e "s/\$recipient/$recipient/g" \ + -e "s/\$address/$address/g" $TEMPLATE | \ msmtp -a $MSMTP_ACCOUNT $address done -- cgit v1.2.3