blob: 0313f7ffd337a833fafdbb2c8769677736d85281 (
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', Postman::TEXT_DOMAIN ), $message , '', "-f{$to_email}" );
}
}
|