summaryrefslogtreecommitdiff
path: root/Postman/notifications/PostmanMailNotify.php
blob: a76fb2ad5e7c885dc07d6746c47376fb6f40569a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

class PostmanMailNotify implements Postman_Notify {

    public function send_message($message)
    {
        $to_email = apply_filters( 'post_smtp_notify_email',get_bloginfo( 'admin_email' ) );
        $domain = get_bloginfo( 'url' );

        mail( $to_email, "{$domain}: " .  __( 'Post SMTP email error', 'post-smtp' ), $message , '', "-f{$to_email}" );
    }
}