PluginProbe
EmailKit – Email Customizer for WooCommerce & WP / 1.6.9
EmailKit – Email Customizer for WooCommerce & WP v1.6.9
1.6.9 1.6.8 1.6.7 trunk 1.0.0 1.2.0 1.4.0 1.4.5 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6
emailkit / includes / Admin / Emails / EmailConfig.php

EmailConfig.php in EmailKit – Email Customizer for WooCommerce & WP 1.6.9, at includes/Admin/Emails/EmailConfig.php

24 lines 498 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }