Your IP : 18.223.211.185


Current Path : /var/www/wptbox/wp-content/mu-plugins/wp-nc-easywp/plugin/Functions/
Upload File :
Current File : /var/www/wptbox/wp-content/mu-plugins/wp-nc-easywp/plugin/Functions/mail.php

<?php
if (!defined("ABSPATH")) {
    exit();
}

/*
|--------------------------------------------------------------------------
| Mail filter
|--------------------------------------------------------------------------
|
| Here we're going to add our own filter to the mail sender.
|
|
*/

// Filter the mail sender email with max priority.
add_filter('wp_mail_from', function ($email) {
    $site_url = get_site_url();
    $re       = '/^(https?:\/\/)?(www\.)?/';
    $domain   = preg_replace($re, '', $site_url);

    return 'wordpress@' . $domain;
}, PHP_INT_MAX);

// Filter the mail sender name
add_filter('wp_mail_from_name', function ($name) {
    return 'EasyWP';
});