blob: 795afaa06d62ef329b5e13622d4ee6f3bc0678c9 (
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 = get_bloginfo( 'admin_email' );
$domain = get_bloginfo( 'url' );
mail( $to_email, "{$domain}: " . __( 'Post SMTP email error', Postman::TEXT_DOMAIN ), $message , '', "-f{$to_email}" );
}
}
|