Skip to content

Commit 1df6fed

Browse files
authored
commenting unnecessary config.
1 parent bbedeb0 commit 1df6fed

File tree

1 file changed

+52
-52
lines changed

1 file changed

+52
-52
lines changed

src/Config/MultiEmail.php

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -71,57 +71,57 @@ class MultiEmail extends BaseConfig
7171
'DSN' => false,
7272
];
7373

74-
public array $mailgun = [
75-
'fromEmail' => '', // Replace it with the email you used as the sender
76-
'fromName' => '', // Replace with sender name
77-
'recipients' => '', // Can be left blank if there are no default settings for the recipient
78-
'userAgent' => 'CodeIgniter',
79-
'protocol' => 'smtp',
80-
'mailPath' => '/usr/sbin/sendmail',
81-
'SMTPHost' => 'smtp.mailgun.org', // Host SMTP Mailgun
82-
'SMTPUser' => '', // Replace with your Mailgun email address (e.g. [email protected])
83-
'SMTPPass' => '', // Replace it with the Mailgun SMTP password or API key
84-
'SMTPPort' => 587, // Port SMTP Mailgun for TLS
85-
'SMTPTimeout' => 30,
86-
'SMTPKeepAlive' => false,
87-
'SMTPCrypto' => 'tls', // Encryption TLS untuk Mailgun
88-
'wordWrap' => true,
89-
'wrapChars' => 76,
90-
'mailType' => 'html',
91-
'charset' => 'UTF-8',
92-
'validate' => false,
93-
'priority' => 3,
94-
'CRLF' => "\r\n",
95-
'newline' => "\r\n",
96-
'BCCBatchMode' => false,
97-
'BCCBatchSize' => 200,
98-
'DSN' => false,
99-
];
74+
// public array $mailgun = [
75+
// 'fromEmail' => '', // Replace it with the email you used as the sender
76+
// 'fromName' => '', // Replace with sender name
77+
// 'recipients' => '', // Can be left blank if there are no default settings for the recipient
78+
// 'userAgent' => 'CodeIgniter',
79+
// 'protocol' => 'smtp',
80+
// 'mailPath' => '/usr/sbin/sendmail',
81+
// 'SMTPHost' => 'smtp.mailgun.org', // Host SMTP Mailgun
82+
// 'SMTPUser' => '', // Replace with your Mailgun email address (e.g. [email protected])
83+
// 'SMTPPass' => '', // Replace it with the Mailgun SMTP password or API key
84+
// 'SMTPPort' => 587, // Port SMTP Mailgun for TLS
85+
// 'SMTPTimeout' => 30,
86+
// 'SMTPKeepAlive' => false,
87+
// 'SMTPCrypto' => 'tls', // Encryption TLS untuk Mailgun
88+
// 'wordWrap' => true,
89+
// 'wrapChars' => 76,
90+
// 'mailType' => 'html',
91+
// 'charset' => 'UTF-8',
92+
// 'validate' => false,
93+
// 'priority' => 3,
94+
// 'CRLF' => "\r\n",
95+
// 'newline' => "\r\n",
96+
// 'BCCBatchMode' => false,
97+
// 'BCCBatchSize' => 200,
98+
// 'DSN' => false,
99+
// ];
100100

101-
public array $sendgrid = [
102-
'fromEmail' => '', // Replace it with the email you used as the sender
103-
'fromName' => '', // Replace with sender name
104-
'recipients' => '', // Can be left blank if there are no default settings for the recipient
105-
'userAgent' => 'CodeIgniter',
106-
'protocol' => 'smtp',
107-
'mailPath' => '/usr/sbin/sendmail',
108-
'SMTPHost' => 'smtp.sendgrid.net', // Host SMTP Mailgun
109-
'SMTPUser' => '', // Username SMTP SendGrid, use 'apikey'
110-
'SMTPPass' => '', // Replace it with the SendGrid SMTP password or API key
111-
'SMTPPort' => 587, // Port SMTP Mailgun for TLS
112-
'SMTPTimeout' => 30,
113-
'SMTPKeepAlive' => false,
114-
'SMTPCrypto' => 'tls', // Encryption TLS for SendGrid
115-
'wordWrap' => true,
116-
'wrapChars' => 76,
117-
'mailType' => 'html',
118-
'charset' => 'UTF-8',
119-
'validate' => false,
120-
'priority' => 3,
121-
'CRLF' => "\r\n",
122-
'newline' => "\r\n",
123-
'BCCBatchMode' => false,
124-
'BCCBatchSize' => 200,
125-
'DSN' => false,
126-
];
101+
// public array $sendgrid = [
102+
// 'fromEmail' => '', // Replace it with the email you used as the sender
103+
// 'fromName' => '', // Replace with sender name
104+
// 'recipients' => '', // Can be left blank if there are no default settings for the recipient
105+
// 'userAgent' => 'CodeIgniter',
106+
// 'protocol' => 'smtp',
107+
// 'mailPath' => '/usr/sbin/sendmail',
108+
// 'SMTPHost' => 'smtp.sendgrid.net', // Host SMTP Mailgun
109+
// 'SMTPUser' => '', // Username SMTP SendGrid, use 'apikey'
110+
// 'SMTPPass' => '', // Replace it with the SendGrid SMTP password or API key
111+
// 'SMTPPort' => 587, // Port SMTP Mailgun for TLS
112+
// 'SMTPTimeout' => 30,
113+
// 'SMTPKeepAlive' => false,
114+
// 'SMTPCrypto' => 'tls', // Encryption TLS for SendGrid
115+
// 'wordWrap' => true,
116+
// 'wrapChars' => 76,
117+
// 'mailType' => 'html',
118+
// 'charset' => 'UTF-8',
119+
// 'validate' => false,
120+
// 'priority' => 3,
121+
// 'CRLF' => "\r\n",
122+
// 'newline' => "\r\n",
123+
// 'BCCBatchMode' => false,
124+
// 'BCCBatchSize' => 200,
125+
// 'DSN' => false,
126+
// ];
127127
}

0 commit comments

Comments
 (0)