인증서가 곧 만료되는 사용자에게 이메일 알림을 보내고 싶습니다. 아래 코드를 사용하면 MySQL에서 선택한 모든 이메일 주소로 이메일을 보낼 수 있습니다. 알림을 보낼 이메일과 만료일을 모두 선택하고 싶습니다.
#!/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()" )