유용하다고 생각되는 서비스를 선택하세요. 변호하는 동안 귀하는 자신의 선택을 정당화해야 합니다.

⇒ 사용자에게 메일을 보내 대댓글 알림을 보내주는 서비스!! 를 위한 메일 서버 구축!

Small-Time Email with Exim and Dovecot - Alpine Linux

Securing SMTP Settings With Constants - WP Mail SMTP

if ! sudo_wp plugin get wp-mail-smtp 2&> /dev/null; then
    sudo_wp config set WPMS_ON true --raw
    sudo_wp config set WPMS_SMTP_HOST exim
    sudo_wp config set WPMS_SMTP_PORT 25
    sudo_wp config set WPMS_SSL "''"                                # '', 'ssl', 'tls'
    sudo_wp config set WPMS_SMTP_AUTH false --raw
    sudo_wp config set WPMS_SMTP_USER $EXIM_USER    # Auth username
    sudo_wp config set WPMS_SMTP_PASS $EXIM_PASS    # Auth password
    sudo_wp config set WPMS_SMTP_AUTOTLS false --raw
    sudo_wp config set WPMS_MAILER smtp
    sudo_wp plugin install wp-mail-smtp --activate
fi
if ! sudo_wp plugin get comment-reply-email-notification 2&> /dev/null; then
    sudo_wp plugin install comment-reply-email-notification --activate
fi