|
13 | 13 |
|
14 | 14 | // Email language settings |
15 | 15 | return [ |
16 | | - 'mustBeArray' => 'The email validation method must be passed an array.', |
17 | | - 'invalidAddress' => 'Invalid email address: "{0}"', |
18 | | - 'attachmentMissing' => 'Unable to locate the following email attachment: "{0}"', |
19 | | - 'attachmentUnreadable' => 'Unable to open this attachment: "{0}"', |
20 | | - 'noFrom' => 'Cannot send mail with no "From" header.', |
21 | | - 'noRecipients' => 'You must include recipients: To, Cc, or Bcc', |
22 | | - 'sendFailurePHPMail' => 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.', |
23 | | - 'sendFailureSendmail' => 'Unable to send email using Sendmail. Your server might not be configured to send mail using this method.', |
24 | | - 'sendFailureSmtp' => 'Unable to send email using SMTP. Your server might not be configured to send mail using this method.', |
25 | | - 'sent' => 'Your message has been successfully sent using the following protocol: {0}', |
26 | | - 'noSocket' => 'Unable to open a socket to Sendmail. Please check settings.', |
27 | | - 'noHostname' => 'You did not specify a SMTP hostname.', |
28 | | - 'SMTPError' => 'The following SMTP error was encountered: {0}', |
29 | | - 'noSMTPAuth' => 'Error: You must assign an SMTP username and password.', |
30 | | - 'noSMTPAuthMethod' => 'Error: you must assign an SMTP authentication method ("LOGIN" or "PLAIN")', |
31 | | - 'failedSMTPLogin' => 'Failed to send AUTH LOGIN command. Error: {0}', |
32 | | - 'SMTPAuthUsername' => 'Failed to authenticate username. Error: {0}', |
33 | | - 'SMTPAuthPassword' => 'Failed to authenticate password. Error: {0}', |
34 | | - 'SMTPDataFailure' => 'Unable to send data: {0}', |
35 | | - 'exitStatus' => 'Exit status code: {0}', |
| 16 | + 'mustBeArray' => 'The email validation method must be passed an array.', |
| 17 | + 'invalidAddress' => 'Invalid email address: "{0}"', |
| 18 | + 'attachmentMissing' => 'Unable to locate the following email attachment: "{0}"', |
| 19 | + 'attachmentUnreadable' => 'Unable to open this attachment: "{0}"', |
| 20 | + 'noFrom' => 'Cannot send mail with no "From" header.', |
| 21 | + 'noRecipients' => 'You must include recipients: To, Cc, or Bcc', |
| 22 | + 'sendFailurePHPMail' => 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.', |
| 23 | + 'sendFailureSendmail' => 'Unable to send email using Sendmail. Your server might not be configured to send mail using this method.', |
| 24 | + 'sendFailureSmtp' => 'Unable to send email using SMTP. Your server might not be configured to send mail using this method.', |
| 25 | + 'sent' => 'Your message has been successfully sent using the following protocol: {0}', |
| 26 | + 'noSocket' => 'Unable to open a socket to Sendmail. Please check settings.', |
| 27 | + 'noHostname' => 'You did not specify a SMTP hostname.', |
| 28 | + 'SMTPError' => 'The following SMTP error was encountered: {0}', |
| 29 | + 'noSMTPAuth' => 'Error: You must assign an SMTP username and password.', |
| 30 | + 'invalidSMTPAuthMethod' => 'Error: SMTP authorization method "{0}" is not supported in codeigniter, set either "login" or "plain" authorization method', |
| 31 | + 'failureSMTPAuthMethod' => 'Unable to initiate AUTH command. Your server might not be configured to use AUTH {0} authentication method.', |
| 32 | + 'SMTPAuthCredentials' => 'Failed to authenticate user credentials. Error: {0}', |
| 33 | + 'SMTPAuthUsername' => 'Failed to authenticate username. Error: {0}', |
| 34 | + 'SMTPAuthPassword' => 'Failed to authenticate password. Error: {0}', |
| 35 | + 'SMTPDataFailure' => 'Unable to send data: {0}', |
| 36 | + 'exitStatus' => 'Exit status code: {0}', |
36 | 37 | ]; |
0 commit comments