証明書がすぐに期限切れになるユーザーにメール通知を送信したいと思います。以下のコードを使用すると、MySQLで選択したすべてのEメールアドレスにEメールを送信できます。通知を送信するメールと有効期限の両方を選択したいと思います。
#!/bin/bash
EMAIL_ADDRESS="mysql -N -uUser -pPassword database -e \
"SELECT email FROM table WHERE DATEDIFF(date_expiration, CURDATE()) <=30 AND date_expiration > CURDATE()"
echo "Hello! The expiration date of your certificate is [date_expiration] ,please follow the procedure to renew it" \
| mailx -A gmail -s "Certificate expiration date" $EMAIL_ADDRESS
答え1
#!/bin/bash
while read -r N E D ; do
echo "Hello $N, The expiration date of your certificate for $D is nearing, please renew it" \
| mailx -A gmail -s "Certificate expiration date" "$N <$E>"
done < <(mysql -N -uUser -pPassword database -e \
"SELECT name, email, domain FROM users, certs WHERE domain.user=user.id and DATEDIFF(date_expiration, CURDATE()) <=30 AND date_expiration > CURDATE()" )