| 1 |
<?php |
| 2 |
namespace EmailKit\Admin\Emails; |
| 3 |
|
| 4 |
defined('ABSPATH') || exit; |
| 5 |
|
| 6 |
class EmailConfig { |
| 7 |
|
| 8 |
|
| 9 |
public function __construct() |
| 10 |
{ |
| 11 |
add_action('phpmailer_init',[$this,'mailtrap']); |
| 12 |
} |
| 13 |
|
| 14 |
function mailtrap($phpmailer) { |
| 15 |
$phpmailer->isSMTP(); |
| 16 |
$phpmailer->Host = 'smtp.mailtrap.io'; |
| 17 |
$phpmailer->SMTPAuth = true; |
| 18 |
$phpmailer->Port = 2525; |
| 19 |
$phpmailer->Username = '4ac3b0a2b01d7f'; |
| 20 |
$phpmailer->Password = '5925295eee0f8a'; |
| 21 |
} |
| 22 |
|
| 23 |
|
| 24 |
} |