HEX
Server: Apache
System: Linux webd001.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: mciraet (192513)
PHP: 8.2.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/mciraet/www/wp-content/plugins/emailkit/includes/Admin/Emails/EmailConfig.php
<?php 
namespace EmailKit\Admin\Emails;

defined('ABSPATH') || exit;

class EmailConfig {


	public function __construct()
	{
		add_action('phpmailer_init',[$this,'mailtrap']);
	}

    function mailtrap($phpmailer) {
        $phpmailer->isSMTP();
        $phpmailer->Host = 'smtp.mailtrap.io';
        $phpmailer->SMTPAuth = true;
        $phpmailer->Port = 2525;
        $phpmailer->Username = '4ac3b0a2b01d7f';
        $phpmailer->Password = '5925295eee0f8a';
    }

    
}