├── swd.txt ├── PHPMailer-master ├── VERSION ├── phpunit.xml.dist ├── src │ ├── Exception.php │ ├── OAuth.php │ └── POP3.php ├── language │ ├── phpmailer.lang-zh_cn.php │ ├── phpmailer.lang-zh.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-af.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-hy.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-sr_latn.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-id.php │ └── phpmailer.lang-fr.php ├── COMMITMENT ├── composer.json ├── get_oauth_token.php ├── SECURITY.md └── README.md ├── logout.php ├── README.md ├── mail.php ├── verify.sql ├── profile.php ├── functions.php ├── login.php ├── bootstrap └── css │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.rtl.min.css │ ├── bootstrap-reboot.rtl.css │ └── bootstrap-reboot.css ├── verify.php └── index.php /swd.txt: -------------------------------------------------------------------------------- 1 | zmrqbatqdjbwnewl -------------------------------------------------------------------------------- /PHPMailer-master/VERSION: -------------------------------------------------------------------------------- 1 | 6.4.1 -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | ## Sign Up Form 13 | ![Screenshot (184)](https://user-images.githubusercontent.com/52289151/169865198-b19c14fb-9142-4429-9dc8-baf677bebe52.png) 14 | > ## Verification needed 15 | ![Screenshot (187)](https://user-images.githubusercontent.com/52289151/169866938-803e8a0a-cf9b-4e2f-bb9f-9484f6479d78.png) 16 | > ## Delivered on email linked to the new account 17 | ![Screenshot (186)](https://user-images.githubusercontent.com/52289151/169867523-a6aa00d9-eee4-43f9-908b-0333787cc076.png) 18 | > ##Now Verify 19 | ![Screenshot (190)](https://user-images.githubusercontent.com/52289151/169957024-0864db6f-1be2-48a0-87ec-e41b70545a35.png) 20 | > ## Login 21 | ![Screenshot (185)](https://user-images.githubusercontent.com/52289151/169867277-8b436c2e-3de5-482d-b591-3c6b4de9379f.png) 22 | 23 | 24 | ## Developer 25 | Rwema D. Bagirishya 26 | -------------------------------------------------------------------------------- /PHPMailer-master/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | ./test/ 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | languages 22 | pop3 23 | 24 | 25 | 26 | 27 | ./src 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /mail.php: -------------------------------------------------------------------------------- 1 | IsSMTP(); 13 | 14 | $mail->SMTPDebug = 0; 15 | $mail->SMTPAuth = TRUE; 16 | $mail->SMTPSecure = "tls"; 17 | $mail->Port = 587; 18 | $mail->Host = "smtp.gmail.com"; 19 | //$mail->Host = "smtp.mail.yahoo.com"; 20 | $mail->Username = "rwemadominik3@gmail.com"; 21 | $mail->Password = "zmrqbatqdjbwnewl"; 22 | 23 | $mail->IsHTML(true); 24 | $mail->AddAddress($recipient, "esteemed customer"); 25 | $mail->SetFrom("your-email@gmail.com", "Code Delivery"); 26 | //$mail->AddReplyTo("reply-to-email", "reply-to-name"); 27 | //$mail->AddCC("cc-recipient-email", "cc-recipient-name"); 28 | $mail->Subject = $subject; 29 | $content = $message; 30 | 31 | $mail->MsgHTML($content); 32 | if(!$mail->Send()) { 33 | //echo "Error while sending Email."; 34 | //echo "
";
35 |     //var_dump($mail);
36 |     return false;
37 |   } else {
38 |     //echo "Email sent successfully";
39 |     return true;
40 |   }
41 | 
42 | }
43 | 
44 | ?>


--------------------------------------------------------------------------------
/PHPMailer-master/src/Exception.php:
--------------------------------------------------------------------------------
 1 | 
10 |  * @author    Jim Jagielski (jimjag) 
11 |  * @author    Andy Prevost (codeworxtech) 
12 |  * @author    Brent R. Matzelle (original founder)
13 |  * @copyright 2012 - 2020 Marcus Bointon
14 |  * @copyright 2010 - 2012 Jim Jagielski
15 |  * @copyright 2004 - 2009 Andy Prevost
16 |  * @license   http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
17 |  * @note      This program is distributed in the hope that it will be useful - WITHOUT
18 |  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 |  * FITNESS FOR A PARTICULAR PURPOSE.
20 |  */
21 | 
22 | namespace PHPMailer\PHPMailer;
23 | 
24 | /**
25 |  * PHPMailer exception handler.
26 |  *
27 |  * @author Marcus Bointon 
28 |  */
29 | class Exception extends \Exception
30 | {
31 |     /**
32 |      * Prettify error message output.
33 |      *
34 |      * @return string
35 |      */
36 |     public function errorMessage()
37 |     {
38 |         return '' . htmlspecialchars($this->getMessage()) . "
\n"; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- 1 | 7 | * @author young 8 | * @author Teddysun 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。'; 12 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。'; 14 | $PHPMAILER_LANG['empty_message'] = '邮件正文为空。'; 15 | $PHPMAILER_LANG['encoding'] = '未知编码:'; 16 | $PHPMAILER_LANG['execute'] = '无法执行:'; 17 | $PHPMAILER_LANG['file_access'] = '无法访问文件:'; 18 | $PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:'; 19 | $PHPMAILER_LANG['from_failed'] = '发送地址错误:'; 20 | $PHPMAILER_LANG['instantiate'] = '未知函数调用。'; 21 | $PHPMAILER_LANG['invalid_address'] = '发送失败,电子邮箱地址是无效的:'; 22 | $PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。'; 23 | $PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:'; 25 | $PHPMAILER_LANG['signing'] = '登录失败:'; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP服务器连接失败。'; 27 | $PHPMAILER_LANG['smtp_error'] = 'SMTP服务器出错:'; 28 | $PHPMAILER_LANG['variable_set'] = '无法设置或重置变量:'; 29 | $PHPMAILER_LANG['extension_missing'] = '丢失模块 Extension:'; 30 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Peter Dave Hello <@PeterDaveHello/> 8 | * @author Jason Chiang 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。'; 12 | $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。'; 14 | $PHPMAILER_LANG['empty_message'] = '郵件內容為空'; 15 | $PHPMAILER_LANG['encoding'] = '未知編碼: '; 16 | $PHPMAILER_LANG['execute'] = '無法執行:'; 17 | $PHPMAILER_LANG['file_access'] = '無法存取檔案:'; 18 | $PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:'; 19 | $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:'; 20 | $PHPMAILER_LANG['instantiate'] = '未知函數呼叫。'; 21 | $PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。'; 23 | $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:'; 25 | $PHPMAILER_LANG['signing'] = '電子簽章錯誤: '; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗'; 27 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: '; 28 | $PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: '; 29 | $PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: '; 30 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:身份验证失败。'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误: 不能连接SMTP主机。'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误: 数据不可接受。'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = '未知编码:'; 14 | $PHPMAILER_LANG['execute'] = '不能执行: '; 15 | $PHPMAILER_LANG['file_access'] = '不能访问文件:'; 16 | $PHPMAILER_LANG['file_open'] = '文件错误:不能打开文件:'; 17 | $PHPMAILER_LANG['from_failed'] = '下面的发送地址邮件发送失败了: '; 18 | $PHPMAILER_LANG['instantiate'] = '不能实现mail方法。'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。'; 21 | $PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: '; 23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.'; 12 | $PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다'; 13 | $PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: '; 14 | $PHPMAILER_LANG['execute'] = '실행 불가: '; 15 | $PHPMAILER_LANG['file_access'] = '파일 접근 불가: '; 16 | $PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: '; 17 | $PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: '; 18 | $PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다'; 19 | $PHPMAILER_LANG['invalid_address'] = '잘못된 주소: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.'; 21 | $PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: '; 23 | $PHPMAILER_LANG['signing'] = '서명 오류: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: '; 26 | $PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: '; 27 | $PHPMAILER_LANG['extension_missing'] = '확장자 없음: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'שגיאת SMTP: פעולת האימות נכשלה.'; 10 | $PHPMAILER_LANG['connect_host'] = 'שגיאת SMTP: לא הצלחתי להתחבר לשרת SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'שגיאת SMTP: מידע לא התקבל.'; 12 | $PHPMAILER_LANG['empty_message'] = 'גוף ההודעה ריק'; 13 | $PHPMAILER_LANG['invalid_address'] = 'כתובת שגויה: '; 14 | $PHPMAILER_LANG['encoding'] = 'קידוד לא מוכר: '; 15 | $PHPMAILER_LANG['execute'] = 'לא הצלחתי להפעיל את: '; 16 | $PHPMAILER_LANG['file_access'] = 'לא ניתן לגשת לקובץ: '; 17 | $PHPMAILER_LANG['file_open'] = 'שגיאת קובץ: לא ניתן לגשת לקובץ: '; 18 | $PHPMAILER_LANG['from_failed'] = 'כתובות הנמענים הבאות נכשלו: '; 19 | $PHPMAILER_LANG['instantiate'] = 'לא הצלחתי להפעיל את פונקציית המייל.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' אינה נתמכת.'; 21 | $PHPMAILER_LANG['provide_address'] = 'חובה לספק לפחות כתובת אחת של מקבל המייל.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'שגיאת SMTP: הנמענים הבאים נכשלו: '; 23 | $PHPMAILER_LANG['signing'] = 'שגיאת חתימה: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Yoshi Sakai 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTPエラー: 認証できませんでした。'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTPエラー: SMTPホストに接続できませんでした。'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTPエラー: データが受け付けられませんでした。'; 13 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 14 | $PHPMAILER_LANG['encoding'] = '不明なエンコーディング: '; 15 | $PHPMAILER_LANG['execute'] = '実行できませんでした: '; 16 | $PHPMAILER_LANG['file_access'] = 'ファイルにアクセスできません: '; 17 | $PHPMAILER_LANG['file_open'] = 'ファイルエラー: ファイルを開けません: '; 18 | $PHPMAILER_LANG['from_failed'] = 'Fromアドレスを登録する際にエラーが発生しました: '; 19 | $PHPMAILER_LANG['instantiate'] = 'メール関数が正常に動作しませんでした。'; 20 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 21 | $PHPMAILER_LANG['provide_address'] = '少なくとも1つメールアドレスを 指定する必要があります。'; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' メーラーがサポートされていません。'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTPエラー: 次の受信者アドレスに 間違いがあります: '; 24 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 25 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 26 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 27 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 28 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP kļūda: Autorizācija neizdevās.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Kļūda: Nevar izveidot savienojumu ar SMTP serveri.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Kļūda: Nepieņem informāciju.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Ziņojuma teksts ir tukšs'; 13 | $PHPMAILER_LANG['encoding'] = 'Neatpazīts kodējums: '; 14 | $PHPMAILER_LANG['execute'] = 'Neizdevās izpildīt komandu: '; 15 | $PHPMAILER_LANG['file_access'] = 'Fails nav pieejams: '; 16 | $PHPMAILER_LANG['file_open'] = 'Faila kļūda: Nevar atvērt failu: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Nepareiza sūtītāja adrese: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Nevar palaist sūtīšanas funkciju.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Nepareiza adrese: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' sūtītājs netiek atbalstīts.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Lūdzu, norādiet vismaz vienu adresātu.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP kļūda: neizdevās nosūtīt šādiem saņēmējiem: '; 23 | $PHPMAILER_LANG['signing'] = 'Autorizācijas kļūda: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP savienojuma kļūda'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP servera kļūda: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Nevar piešķirt mainīgā vērtību: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = 'Okänt encode-format: '; 14 | $PHPMAILER_LANG['execute'] = 'Kunde inte köra: '; 15 | $PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: '; 16 | $PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Felaktig adress: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: '; 23 | $PHPMAILER_LANG['signing'] = 'Signeringsfel: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() misslyckades.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serverfel: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Kunde inte definiera eller återställa variabel: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Tillägg ej tillgängligt: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Lỗi SMTP: Không thể xác thực.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Lỗi SMTP: Không thể kết nối máy chủ SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Lỗi SMTP: Dữ liệu không được chấp nhận.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Không có nội dung'; 13 | $PHPMAILER_LANG['encoding'] = 'Mã hóa không xác định: '; 14 | $PHPMAILER_LANG['execute'] = 'Không thực hiện được: '; 15 | $PHPMAILER_LANG['file_access'] = 'Không thể truy cập tệp tin '; 16 | $PHPMAILER_LANG['file_open'] = 'Lỗi Tập tin: Không thể mở tệp tin: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Lỗi địa chỉ gửi đi: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Không dùng được các hàm gửi thư.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Đại chỉ emai không đúng: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' trình gửi thư không được hỗ trợ.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Bạn phải cung cấp ít nhất một địa chỉ người nhận.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Lỗi SMTP: lỗi địa chỉ người nhận: '; 23 | $PHPMAILER_LANG['signing'] = 'Lỗi đăng nhập: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Lỗi kết nối với SMTP'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Lỗi máy chủ smtp '; 26 | $PHPMAILER_LANG['variable_set'] = 'Không thể thiết lập hoặc thiết lập lại biến: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP klaida: autentifikacija nepavyko.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP klaida: nepavyksta prisijungti prie SMTP stoties.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP klaida: duomenys nepriimti.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Laiško turinys tuščias'; 13 | $PHPMAILER_LANG['encoding'] = 'Neatpažinta koduotė: '; 14 | $PHPMAILER_LANG['execute'] = 'Nepavyko įvykdyti komandos: '; 15 | $PHPMAILER_LANG['file_access'] = 'Byla nepasiekiama: '; 16 | $PHPMAILER_LANG['file_open'] = 'Bylos klaida: Nepavyksta atidaryti: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Neteisingas siuntėjo adresas: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Nepavyko paleisti mail funkcijos.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Neteisingas adresas: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' pašto stotis nepalaikoma.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Nurodykite bent vieną gavėjo adresą.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP klaida: nepavyko išsiųsti šiems gavėjams: '; 23 | $PHPMAILER_LANG['signing'] = 'Prisijungimo klaida: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP susijungimo klaida'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP stoties klaida: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Nepavyko priskirti reikšmės kintamajam: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = 'Ókend encoding: '; 14 | $PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: '; 15 | $PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: '; 16 | $PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: '; 17 | $PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: '; 23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP त्रुटि: प्रामाणिकता की जांच नहीं हो सका। '; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP त्रुटि: SMTP सर्वर से कनेक्ट नहीं हो सका। '; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP त्रुटि: डेटा स्वीकार नहीं किया जाता है। '; 12 | $PHPMAILER_LANG['empty_message'] = 'संदेश खाली है। '; 13 | $PHPMAILER_LANG['encoding'] = 'अज्ञात एन्कोडिंग प्रकार। '; 14 | $PHPMAILER_LANG['execute'] = 'आदेश को निष्पादित करने में विफल। '; 15 | $PHPMAILER_LANG['file_access'] = 'फ़ाइल उपलब्ध नहीं है। '; 16 | $PHPMAILER_LANG['file_open'] = 'फ़ाइल त्रुटि: फाइल को खोला नहीं जा सका। '; 17 | $PHPMAILER_LANG['from_failed'] = 'प्रेषक का पता गलत है। '; 18 | $PHPMAILER_LANG['instantiate'] = 'मेल फ़ंक्शन कॉल नहीं कर सकता है।'; 19 | $PHPMAILER_LANG['invalid_address'] = 'पता गलत है। '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = 'मेल सर्वर के साथ काम नहीं करता है। '; 21 | $PHPMAILER_LANG['provide_address'] = 'आपको कम से कम एक प्राप्तकर्ता का ई-मेल पता प्रदान करना होगा।'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP त्रुटि: निम्न प्राप्तकर्ताओं को पते भेजने में विफल। '; 23 | $PHPMAILER_LANG['signing'] = 'साइनअप त्रुटि:। '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP का connect () फ़ंक्शन विफल हुआ। '; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP सर्वर त्रुटि। '; 26 | $PHPMAILER_LANG['variable_set'] = 'चर को बना या संशोधित नहीं किया जा सकता। '; 27 | $PHPMAILER_LANG['extension_missing'] = 'एक्सटेन्षन गायब है: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'خطأ SMTP : لا يمكن تأكيد الهوية.'; 10 | $PHPMAILER_LANG['connect_host'] = 'خطأ SMTP: لا يمكن الاتصال بالخادم SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'خطأ SMTP: لم يتم قبول المعلومات .'; 12 | $PHPMAILER_LANG['empty_message'] = 'نص الرسالة فارغ'; 13 | $PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: '; 14 | $PHPMAILER_LANG['execute'] = 'لا يمكن تنفيذ : '; 15 | $PHPMAILER_LANG['file_access'] = 'لا يمكن الوصول للملف: '; 16 | $PHPMAILER_LANG['file_open'] = 'خطأ في الملف: لا يمكن فتحه: '; 17 | $PHPMAILER_LANG['from_failed'] = 'خطأ على مستوى عنوان المرسل : '; 18 | $PHPMAILER_LANG['instantiate'] = 'لا يمكن توفير خدمة البريد.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'الإرسال غير ممكن لأن عنوان البريد الإلكتروني غير صالح: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' برنامج الإرسال غير مدعوم.'; 21 | $PHPMAILER_LANG['provide_address'] = 'يجب توفير عنوان البريد الإلكتروني لمستلم واحد على الأقل.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'خطأ SMTP: الأخطاء التالية ' . 23 | 'فشل في الارسال لكل من : '; 24 | $PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: '; 27 | $PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'الإضافة غير موجودة: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Mohammad Hossein Mojtahedi 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'خطای SMTP: احراز هویت با شکست مواجه شد.'; 11 | $PHPMAILER_LANG['connect_host'] = 'خطای SMTP: اتصال به سرور SMTP برقرار نشد.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'خطای SMTP: داده‌ها نا‌درست هستند.'; 13 | $PHPMAILER_LANG['empty_message'] = 'بخش متن پیام خالی است.'; 14 | $PHPMAILER_LANG['encoding'] = 'کد‌گذاری نا‌شناخته: '; 15 | $PHPMAILER_LANG['execute'] = 'امکان اجرا وجود ندارد: '; 16 | $PHPMAILER_LANG['file_access'] = 'امکان دسترسی به فایل وجود ندارد: '; 17 | $PHPMAILER_LANG['file_open'] = 'خطای File: امکان بازکردن فایل وجود ندارد: '; 18 | $PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: '; 19 | $PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمی‌شود.'; 22 | $PHPMAILER_LANG['provide_address'] = 'باید حداقل یک آدرس گیرنده وارد کنید.'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'خطای SMTP: ارسال به آدرس گیرنده با خطا مواجه شد: '; 24 | $PHPMAILER_LANG['signing'] = 'خطا در امضا: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'خطا در اتصال به SMTP.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'خطا در SMTP Server: '; 27 | $PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیر‌ها وجود ندارد: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'افزونه موجود نیست: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Памылка SMTP: памылка ідэнтыфікацыі.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Памылка SMTP: нельга ўстанавіць сувязь з SMTP-серверам.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Памылка SMTP: звесткі непрынятыя.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Пустое паведамленне.'; 13 | $PHPMAILER_LANG['encoding'] = 'Невядомая кадыроўка тэксту: '; 14 | $PHPMAILER_LANG['execute'] = 'Нельга выканаць каманду: '; 15 | $PHPMAILER_LANG['file_access'] = 'Няма доступу да файла: '; 16 | $PHPMAILER_LANG['file_open'] = 'Нельга адкрыць файл: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Няправільны адрас адпраўніка: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Нельга прымяніць функцыю mail().'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Нельга даслаць паведамленне, няправільны email атрымальніка: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Запоўніце, калі ласка, правільны email атрымальніка.'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' - паштовы сервер не падтрымліваецца.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Памылка SMTP: няправільныя атрымальнікі: '; 23 | $PHPMAILER_LANG['signing'] = 'Памылка подпісу паведамлення: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Памылка сувязі з SMTP-серверам.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Памылка SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Нельга ўстанавіць або перамяніць значэнне пераменнай: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-hy.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP -ի սխալ: չհաջողվեց ստուգել իսկությունը.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP -ի սխալ: չհաջողվեց կապ հաստատել SMTP սերվերի հետ.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP -ի սխալ: տվյալները ընդունված չեն.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Հաղորդագրությունը դատարկ է'; 13 | $PHPMAILER_LANG['encoding'] = 'Կոդավորման անհայտ տեսակ: '; 14 | $PHPMAILER_LANG['execute'] = 'Չհաջողվեց իրականացնել հրամանը: '; 15 | $PHPMAILER_LANG['file_access'] = 'Ֆայլը հասանելի չէ: '; 16 | $PHPMAILER_LANG['file_open'] = 'Ֆայլի սխալ: ֆայլը չհաջողվեց բացել: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Ուղարկողի հետևյալ հասցեն սխալ է: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Հնարավոր չէ կանչել mail ֆունկցիան.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Հասցեն սխալ է: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' փոստային սերվերի հետ չի աշխատում.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Անհրաժեշտ է տրամադրել գոնե մեկ ստացողի e-mail հասցե.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP -ի սխալ: չի հաջողվել ուղարկել հետևյալ ստացողների հասցեներին: '; 23 | $PHPMAILER_LANG['signing'] = 'Ստորագրման սխալ: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP -ի connect() ֆունկցիան չի հաջողվել'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP սերվերի սխալ: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Չի հաջողվում ստեղծել կամ վերափոխել փոփոխականը: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Հավելվածը բացակայում է: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: Не може да се удостовери пред сървъра.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: Не може да се свърже с SMTP хоста.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: данните не са приети.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Съдържанието на съобщението е празно'; 13 | $PHPMAILER_LANG['encoding'] = 'Неизвестно кодиране: '; 14 | $PHPMAILER_LANG['execute'] = 'Не може да се изпълни: '; 15 | $PHPMAILER_LANG['file_access'] = 'Няма достъп до файл: '; 16 | $PHPMAILER_LANG['file_open'] = 'Файлова грешка: Не може да се отвори файл: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Следните адреси за подател са невалидни: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Не може да се инстанцира функцията mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Невалиден адрес: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' - пощенски сървър не се поддържа.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Трябва да предоставите поне един email адрес за получател.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: Следните адреси за Получател са невалидни: '; 23 | $PHPMAILER_LANG['signing'] = 'Грешка при подписване: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP провален connect().'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP сървърна грешка: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Не може да се установи или възстанови променлива: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Липсва разширение: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s’ha pogut autenticar.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.'; 12 | $PHPMAILER_LANG['empty_message'] = 'El cos del missatge està buit.'; 13 | $PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: '; 14 | $PHPMAILER_LANG['execute'] = 'No es pot executar: '; 15 | $PHPMAILER_LANG['file_access'] = 'No es pot accedir a l’arxiu: '; 16 | $PHPMAILER_LANG['file_open'] = 'Error d’Arxiu: No es pot obrir l’arxiu: '; 17 | $PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: '; 18 | $PHPMAILER_LANG['instantiate'] = 'No s’ha pogut crear una instància de la funció Mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Adreça d’email invalida: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat'; 21 | $PHPMAILER_LANG['provide_address'] = 'S’ha de proveir almenys una adreça d’email com a destinatari.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: '; 23 | $PHPMAILER_LANG['signing'] = 'Error al signar: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ha fallat el SMTP Connect().'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'No s’ha pogut establir o restablir la variable: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- 1 | 7 | * Rewrite and extension of the work by Mikael Stokkebro 8 | * 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Login mislykkedes.'; 12 | $PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Forbindelse til SMTP serveren kunne ikke oprettes.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data blev ikke accepteret.'; 14 | $PHPMAILER_LANG['empty_message'] = 'Meddelelsen er uden indhold'; 15 | $PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: '; 16 | $PHPMAILER_LANG['execute'] = 'Kunne ikke afvikle: '; 17 | $PHPMAILER_LANG['file_access'] = 'Kunne ikke tilgå filen: '; 18 | $PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Email funktionen kunne ikke initialiseres.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Udgyldig adresse: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Indtast mindst en modtagers email adresse.'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: '; 25 | $PHPMAILER_LANG['signing'] = 'Signeringsfejl: '; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fejlede.'; 27 | $PHPMAILER_LANG['smtp_error'] = 'SMTP server fejl: '; 28 | $PHPMAILER_LANG['variable_set'] = 'Kunne ikke definere eller nulstille variablen: '; 29 | $PHPMAILER_LANG['extension_missing'] = 'Udvidelse mangler: '; 30 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: Imposible autentificar.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: Imposible conectar al servidor SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.'; 12 | $PHPMAILER_LANG['empty_message'] = 'El cuerpo del mensaje está vacío.'; 13 | $PHPMAILER_LANG['encoding'] = 'Codificación desconocida: '; 14 | $PHPMAILER_LANG['execute'] = 'Imposible ejecutar: '; 15 | $PHPMAILER_LANG['file_access'] = 'Imposible acceder al archivo: '; 16 | $PHPMAILER_LANG['file_open'] = 'Error de Archivo: Imposible abrir el archivo: '; 17 | $PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Imposible crear una instancia de la función Mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Imposible enviar: dirección de email inválido: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Debe proporcionar al menos una dirección de email de destino.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinos fallaron: '; 23 | $PHPMAILER_LANG['signing'] = 'Error al firmar: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falló.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Extensión faltante: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.'; 13 | $PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu'; 14 | $PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: '; 15 | $PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: '; 16 | $PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: '; 17 | $PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: '; 18 | $PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: '; 19 | $PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: '; 21 | $PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.'; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: '; 24 | $PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Nõutud laiendus on puudu: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela prijava.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Nije moguće spojiti se sa SMTP serverom.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 13 | $PHPMAILER_LANG['encoding'] = 'Nepoznata kriptografija: '; 14 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 15 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 16 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 17 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje sa navedenih e-mail adresa nije uspjelo: '; 18 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedene e-mail adrese nije uspjelo: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Definišite barem jednu adresu primaoca.'; 23 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP server nije uspjelo.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP greška: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Nije moguće postaviti varijablu ili je vratiti nazad: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje ekstenzija: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Erro SMTP: Non puido ser autentificado.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Erro SMTP: Non puido conectar co servidor SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro SMTP: Datos non aceptados.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Corpo da mensaxe vacía'; 13 | $PHPMAILER_LANG['encoding'] = 'Codificación descoñecida: '; 14 | $PHPMAILER_LANG['execute'] = 'Non puido ser executado: '; 15 | $PHPMAILER_LANG['file_access'] = 'Nob puido acceder ó arquivo: '; 16 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: No puido abrir o arquivo: '; 17 | $PHPMAILER_LANG['from_failed'] = 'A(s) seguinte(s) dirección(s) de remitente(s) deron erro: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Non puido crear unha instancia da función Mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Non puido envia-lo correo: dirección de email inválida: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer non está soportado.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Debe engadir polo menos unha dirección de email coma destino.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Erro SMTP: Os seguintes destinos fallaron: '; 23 | $PHPMAILER_LANG['signing'] = 'Erro ó firmar: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallou.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Erro do servidor SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Non puidemos axustar ou reaxustar a variábel: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Eroare SMTP: Autentificarea a eșuat.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Eroare SMTP: Conectarea la serverul SMTP a eșuat.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Eroare SMTP: Datele nu au fost acceptate.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Mesajul este gol.'; 13 | $PHPMAILER_LANG['encoding'] = 'Encodare necunoscută: '; 14 | $PHPMAILER_LANG['execute'] = 'Nu se poate executa următoarea comandă: '; 15 | $PHPMAILER_LANG['file_access'] = 'Nu se poate accesa următorul fișier: '; 16 | $PHPMAILER_LANG['file_open'] = 'Eroare fișier: Nu se poate deschide următorul fișier: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Următoarele adrese From au dat eroare: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Funcția mail nu a putut fi inițializată.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Adresa de email nu este validă: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nu este suportat.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Trebuie să adăugați cel puțin o adresă de email.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Eroare SMTP: Următoarele adrese de email au eșuat: '; 23 | $PHPMAILER_LANG['signing'] = 'A aparut o problemă la semnarea emailului. '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Conectarea la serverul SMTP a eșuat.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Eroare server SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Nu se poate seta/reseta variabila. '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Lipsește extensia: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-tl.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Hindi mapatotohanan.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Hindi makakonekta sa SMTP host.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Ang datos ay hindi naitanggap.'; 13 | $PHPMAILER_LANG['empty_message'] = 'Walang laman ang mensahe'; 14 | $PHPMAILER_LANG['encoding'] = 'Hindi alam ang encoding: '; 15 | $PHPMAILER_LANG['execute'] = 'Hindi maisasagawa: '; 16 | $PHPMAILER_LANG['file_access'] = 'Hindi ma-access ang file: '; 17 | $PHPMAILER_LANG['file_open'] = 'File Error: Hindi mabuksan ang file: '; 18 | $PHPMAILER_LANG['from_failed'] = 'Ang sumusunod na address ay nabigo: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Hindi maisimulan ang instance ng mail function.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Hindi wasto ang address na naibigay: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = 'Ang mailer ay hindi suportado.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Kailangan mong magbigay ng kahit isang email address na tatanggap.'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Ang mga sumusunod na tatanggap ay nabigo: '; 24 | $PHPMAILER_LANG['signing'] = 'Hindi ma-sign: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ang SMTP connect() ay nabigo.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Ang server ng SMTP ay nabigo: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Hindi matatakda o ma-reset ang mga variables: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Nawawala ang extension: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Ralat SMTP: Tidak dapat pengesahan.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Ralat SMTP: Tidak dapat menghubungi hos pelayan SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Ralat SMTP: Data tidak diterima oleh pelayan.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Tiada isi untuk mesej'; 13 | $PHPMAILER_LANG['encoding'] = 'Pengekodan tidak diketahui: '; 14 | $PHPMAILER_LANG['execute'] = 'Tidak dapat melaksanakan: '; 15 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses fail: '; 16 | $PHPMAILER_LANG['file_open'] = 'Ralat Fail: Tidak dapat membuka fail: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Berikut merupakan ralat dari alamat e-mel: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat memberi contoh fungsi e-mel.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Alamat emel tidak sah: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' jenis penghantar emel tidak disokong.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Anda perlu menyediakan sekurang-kurangnya satu alamat e-mel penerima.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Ralat SMTP: Penerima e-mel berikut telah gagal: '; 23 | $PHPMAILER_LANG['signing'] = 'Ralat pada tanda tangan: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() telah gagal.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Ralat pada pelayan SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Tidak boleh menetapkan atau menetapkan semula pembolehubah: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Sambungan hilang: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela autentikacija.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Ne mogu se spojiti na SMTP poslužitelj.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 13 | $PHPMAILER_LANG['encoding'] = 'Nepoznati encoding: '; 14 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 15 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 16 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 17 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje s navedenih e-mail adresa nije uspjelo: '; 18 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedenih e-mail adresa nije uspjelo: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Definirajte barem jednu adresu primatelja.'; 23 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP poslužitelj nije uspjelo.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP poslužitelja: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Ne mogu postaviti varijablu niti ju vratiti nazad: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg'; 13 | $PHPMAILER_LANG['encoding'] = 'Onbekende codering: '; 14 | $PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: '; 15 | $PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: '; 16 | $PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres: '; 20 | $PHPMAILER_LANG['invalid_hostentry'] = 'Ongeldige hostentry: '; 21 | $PHPMAILER_LANG['invalid_host'] = 'Ongeldige host: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Er moet minstens één ontvanger worden opgegeven.'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: '; 25 | $PHPMAILER_LANG['signing'] = 'Signeerfout: '; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Verbinding mislukt.'; 27 | $PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: '; 28 | $PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of resetten: '; 29 | $PHPMAILER_LANG['extension_missing'] = 'Extensie afwezig: '; 30 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Foster Snowhill 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.'; 11 | $PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к SMTP-серверу.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.'; 13 | $PHPMAILER_LANG['encoding'] = 'Неизвестная кодировка: '; 14 | $PHPMAILER_LANG['execute'] = 'Невозможно выполнить команду: '; 15 | $PHPMAILER_LANG['file_access'] = 'Нет доступа к файлу: '; 16 | $PHPMAILER_LANG['file_open'] = 'Файловая ошибка: не удаётся открыть файл: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Неверный адрес отправителя: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Невозможно запустить функцию mail().'; 19 | $PHPMAILER_LANG['provide_address'] = 'Пожалуйста, введите хотя бы один email-адрес получателя.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' — почтовый сервер не поддерживается.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: не удалась отправка таким адресатам: '; 22 | $PHPMAILER_LANG['empty_message'] = 'Пустое сообщение'; 23 | $PHPMAILER_LANG['invalid_address'] = 'Не отправлено из-за неправильного формата email-адреса: '; 24 | $PHPMAILER_LANG['signing'] = 'Ошибка подписи: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ошибка соединения с SMTP-сервером'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Ошибка SMTP-сервера: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Невозможно установить или сбросить переменную: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Расширение отсутствует: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP შეცდომა: ავტორიზაცია შეუძლებელია.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP შეცდომა: SMTP სერვერთან დაკავშირება შეუძლებელია.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP შეცდომა: მონაცემები არ იქნა მიღებული.'; 12 | $PHPMAILER_LANG['encoding'] = 'კოდირების უცნობი ტიპი: '; 13 | $PHPMAILER_LANG['execute'] = 'შეუძლებელია შემდეგი ბრძანების შესრულება: '; 14 | $PHPMAILER_LANG['file_access'] = 'შეუძლებელია წვდომა ფაილთან: '; 15 | $PHPMAILER_LANG['file_open'] = 'ფაილური სისტემის შეცდომა: არ იხსნება ფაილი: '; 16 | $PHPMAILER_LANG['from_failed'] = 'გამგზავნის არასწორი მისამართი: '; 17 | $PHPMAILER_LANG['instantiate'] = 'mail ფუნქციის გაშვება ვერ ხერხდება.'; 18 | $PHPMAILER_LANG['provide_address'] = 'გთხოვთ მიუთითოთ ერთი ადრესატის e-mail მისამართი მაინც.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' - საფოსტო სერვერის მხარდაჭერა არ არის.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP შეცდომა: შემდეგ მისამართებზე გაგზავნა ვერ მოხერხდა: '; 21 | $PHPMAILER_LANG['empty_message'] = 'შეტყობინება ცარიელია'; 22 | $PHPMAILER_LANG['invalid_address'] = 'არ გაიგზავნა, e-mail მისამართის არასწორი ფორმატი: '; 23 | $PHPMAILER_LANG['signing'] = 'ხელმოწერის შეცდომა: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'შეცდომა SMTP სერვერთან დაკავშირებისას'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP სერვერის შეცდომა: '; 26 | $PHPMAILER_LANG['variable_set'] = 'შეუძლებელია შემდეგი ცვლადის შექმნა ან შეცვლა: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'ბიბლიოთეკა არ არსებობს: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Miloš Milanović 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: аутентификација није успела.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: повезивање са SMTP сервером није успело.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: подаци нису прихваћени.'; 13 | $PHPMAILER_LANG['empty_message'] = 'Садржај поруке је празан.'; 14 | $PHPMAILER_LANG['encoding'] = 'Непознато кодирање: '; 15 | $PHPMAILER_LANG['execute'] = 'Није могуће извршити наредбу: '; 16 | $PHPMAILER_LANG['file_access'] = 'Није могуће приступити датотеци: '; 17 | $PHPMAILER_LANG['file_open'] = 'Није могуће отворити датотеку: '; 18 | $PHPMAILER_LANG['from_failed'] = 'SMTP грешка: слање са следећих адреса није успело: '; 19 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: слање на следеће адресе није успело: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Није могуће покренути mail функцију.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Порука није послата. Неисправна адреса: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' мејлер није подржан.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Дефинишите бар једну адресу примаоца.'; 24 | $PHPMAILER_LANG['signing'] = 'Грешка приликом пријаве: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Повезивање са SMTP сервером није успело.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Грешка SMTP сервера: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Није могуће задати нити ресетовати променљиву: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Недостаје проширење: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- 1 | 7 | * @fixed by Boris Yurchenko 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'Помилка SMTP: помилка авторизації.'; 11 | $PHPMAILER_LANG['connect_host'] = 'Помилка SMTP: не вдається під\'єднатися до SMTP-серверу.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'Помилка SMTP: дані не прийнято.'; 13 | $PHPMAILER_LANG['encoding'] = 'Невідоме кодування: '; 14 | $PHPMAILER_LANG['execute'] = 'Неможливо виконати команду: '; 15 | $PHPMAILER_LANG['file_access'] = 'Немає доступу до файлу: '; 16 | $PHPMAILER_LANG['file_open'] = 'Помилка файлової системи: не вдається відкрити файл: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Невірна адреса відправника: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Неможливо запустити функцію mail().'; 19 | $PHPMAILER_LANG['provide_address'] = 'Будь ласка, введіть хоча б одну email-адресу отримувача.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' - поштовий сервер не підтримується.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Помилка SMTP: не вдалося відправлення для таких отримувачів: '; 22 | $PHPMAILER_LANG['empty_message'] = 'Пусте повідомлення'; 23 | $PHPMAILER_LANG['invalid_address'] = 'Не відправлено через неправильний формат email-адреси: '; 24 | $PHPMAILER_LANG['signing'] = 'Помилка підпису: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Помилка з\'єднання з SMTP-сервером'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Помилка SMTP-сервера: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Неможливо встановити або скинути змінну: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Розширення відсутнє: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-mg.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Hadisoana SMTP: Tsy nahomby ny fanamarinana.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Tsy afaka mampifandray amin\'ny mpampiantrano SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP diso: tsy voarakitra ny angona.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Tsy misy ny votoaty mailaka.'; 13 | $PHPMAILER_LANG['encoding'] = 'Tsy fantatra encoding: '; 14 | $PHPMAILER_LANG['execute'] = 'Tsy afaka manatanteraka ity baiko manaraka ity: '; 15 | $PHPMAILER_LANG['file_access'] = 'Tsy nahomby ny fidirana amin\'ity rakitra ity: '; 16 | $PHPMAILER_LANG['file_open'] = 'Hadisoana diso: Tsy afaka nanokatra ity file manaraka ity: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Ny adiresy iraka manaraka dia diso: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Tsy afaka nanomboka ny hetsika mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Tsy mety ny adiresy: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tsy manohana.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Alefaso azafady iray adiresy iray farafahakeliny.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Tsy mety ireo mpanaraka ireto: '; 23 | $PHPMAILER_LANG['signing'] = 'Error nandritra ny sonia:'; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Tsy nahomby ny fifandraisana tamin\'ny server SMTP.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Fahadisoana tamin\'ny server SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Tsy azo atao ny mametraka na mamerina ny variable: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Tsy hita ny ampahany: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-sr_latn.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Miloš Milanović 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP greška: autentifikacija nije uspela.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP greška: povezivanje sa SMTP serverom nije uspelo.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP greška: podaci nisu prihvaćeni.'; 13 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 14 | $PHPMAILER_LANG['encoding'] = 'Nepoznato kodiranje: '; 15 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 16 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 17 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 18 | $PHPMAILER_LANG['from_failed'] = 'SMTP greška: slanje sa sledećih adresa nije uspelo: '; 19 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP greška: slanje na sledeće adrese nije uspelo: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Nije moguće pokrenuti mail funkciju.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Poruka nije poslata. Neispravna adresa: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' majler nije podržan.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Definišite bar jednu adresu primaoca.'; 24 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Povezivanje sa SMTP serverom nije uspelo.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP servera: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Nije moguće zadati niti resetovati promenljivu: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Stefano Sabatini 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dati non accettati dal server.'; 13 | $PHPMAILER_LANG['empty_message'] = 'Il corpo del messaggio è vuoto'; 14 | $PHPMAILER_LANG['encoding'] = 'Codifica dei caratteri sconosciuta: '; 15 | $PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: '; 16 | $PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: '; 17 | $PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: '; 18 | $PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Impossibile inviare, l\'indirizzo email non è valido: '; 21 | $PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente'; 22 | $PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi destinatari hanno generato un errore: '; 24 | $PHPMAILER_LANG['signing'] = 'Errore nella firma: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallita.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Errore del server SMTP: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Impossibile impostare o resettare la variabile: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Estensione mancante: '; 29 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Erro do SMTP: Não foi possível realizar a autenticação.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Erro do SMTP: Não foi possível realizar ligação com o servidor SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro do SMTP: Os dados foram rejeitados.'; 12 | $PHPMAILER_LANG['empty_message'] = 'A mensagem no e-mail está vazia.'; 13 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 14 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 15 | $PHPMAILER_LANG['file_access'] = 'Não foi possível aceder o ficheiro: '; 16 | $PHPMAILER_LANG['file_open'] = 'Abertura do ficheiro: Não foi possível abrir o ficheiro: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Ocorreram falhas nos endereços dos seguintes remententes: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível iniciar uma instância da função mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Não foi enviado nenhum e-mail para o endereço de e-mail inválido: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Tem de fornecer pelo menos um endereço como destinatário do e-mail.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Erro do SMTP: O endereço do seguinte destinatário falhou: '; 23 | $PHPMAILER_LANG['signing'] = 'Erro ao assinar: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Extensão em falta: '; 28 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Peter Orlický 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté'; 13 | $PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.'; 14 | $PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: '; 15 | $PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: '; 16 | $PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: '; 17 | $PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: '; 18 | $PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: '; 21 | $PHPMAILER_LANG['invalid_hostentry'] = 'Záznam hostiteľa je nesprávny: '; 22 | $PHPMAILER_LANG['invalid_host'] = 'Hostiteľ je nesprávny: '; 23 | $PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.'; 24 | $PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.'; 25 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne '; 26 | $PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: '; 27 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.'; 28 | $PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: '; 29 | $PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: '; 30 | $PHPMAILER_LANG['extension_missing'] = 'Chýba rozšírenie: '; 31 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Lucas Guimarães 8 | * @author Phelipe Alves 9 | * @author Fabio Beneditto 10 | */ 11 | 12 | $PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.'; 13 | $PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar ao servidor SMTP.'; 14 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados rejeitados.'; 15 | $PHPMAILER_LANG['empty_message'] = 'Mensagem vazia'; 16 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 17 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 18 | $PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: '; 19 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: '; 20 | $PHPMAILER_LANG['from_failed'] = 'Os seguintes remetentes falharam: '; 21 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.'; 22 | $PHPMAILER_LANG['invalid_address'] = 'Endereço de e-mail inválido: '; 23 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 24 | $PHPMAILER_LANG['provide_address'] = 'Você deve informar pelo menos um destinatário.'; 25 | $PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os seguintes destinatários falharam: '; 26 | $PHPMAILER_LANG['signing'] = 'Erro de Assinatura: '; 27 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 28 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 29 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 30 | $PHPMAILER_LANG['extension_missing'] = 'Extensão não existe: '; 31 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- 1 | 7 | * @author Filip Š 8 | * @author Blaž Oražem 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'SMTP napaka: Avtentikacija ni uspela.'; 12 | $PHPMAILER_LANG['connect_host'] = 'SMTP napaka: Vzpostavljanje povezave s SMTP gostiteljem ni uspelo.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP napaka: Strežnik zavrača podatke.'; 14 | $PHPMAILER_LANG['empty_message'] = 'E-poštno sporočilo nima vsebine.'; 15 | $PHPMAILER_LANG['encoding'] = 'Nepoznan tip kodiranja: '; 16 | $PHPMAILER_LANG['execute'] = 'Operacija ni uspela: '; 17 | $PHPMAILER_LANG['file_access'] = 'Nimam dostopa do datoteke: '; 18 | $PHPMAILER_LANG['file_open'] = 'Ne morem odpreti datoteke: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Neveljaven e-naslov pošiljatelja: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Ne morem inicializirati mail funkcije.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'E-poštno sporočilo ni bilo poslano. E-naslov je neveljaven: '; 22 | $PHPMAILER_LANG['invalid_hostentry'] = 'Neveljaven vnos gostitelja: '; 23 | $PHPMAILER_LANG['invalid_host'] = 'Neveljaven gostitelj: '; 24 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer ni podprt.'; 25 | $PHPMAILER_LANG['provide_address'] = 'Prosimo, vnesite vsaj enega naslovnika.'; 26 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP napaka: Sledeči naslovniki so neveljavni: '; 27 | $PHPMAILER_LANG['signing'] = 'Napaka pri podpisovanju: '; 28 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ne morem vzpostaviti povezave s SMTP strežnikom.'; 29 | $PHPMAILER_LANG['smtp_error'] = 'Napaka SMTP strežnika: '; 30 | $PHPMAILER_LANG['variable_set'] = 'Ne morem nastaviti oz. ponastaviti spremenljivke: '; 31 | $PHPMAILER_LANG['extension_missing'] = 'Manjkajoča razširitev: '; 32 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- 1 | 7 | * @author @januridp 8 | * @author Ian Mustafa 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'Kesalahan SMTP: Tidak dapat mengotentikasi.'; 12 | $PHPMAILER_LANG['connect_host'] = 'Kesalahan SMTP: Tidak dapat terhubung ke host SMTP.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'Kesalahan SMTP: Data tidak diterima.'; 14 | $PHPMAILER_LANG['empty_message'] = 'Isi pesan kosong'; 15 | $PHPMAILER_LANG['encoding'] = 'Pengkodean karakter tidak dikenali: '; 16 | $PHPMAILER_LANG['execute'] = 'Tidak dapat menjalankan proses: '; 17 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses berkas: '; 18 | $PHPMAILER_LANG['file_open'] = 'Kesalahan Berkas: Berkas tidak dapat dibuka: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Alamat pengirim berikut mengakibatkan kesalahan: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat menginisialisasi fungsi surel.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Gagal terkirim, alamat surel tidak sesuai: '; 22 | $PHPMAILER_LANG['invalid_hostentry'] = 'Gagal terkirim, entri host tidak sesuai: '; 23 | $PHPMAILER_LANG['invalid_host'] = 'Gagal terkirim, host tidak sesuai: '; 24 | $PHPMAILER_LANG['provide_address'] = 'Harus tersedia minimal satu alamat tujuan'; 25 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tidak didukung'; 26 | $PHPMAILER_LANG['recipients_failed'] = 'Kesalahan SMTP: Alamat tujuan berikut menyebabkan kesalahan: '; 27 | $PHPMAILER_LANG['signing'] = 'Kesalahan dalam penandatangan SSL: '; 28 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() gagal.'; 29 | $PHPMAILER_LANG['smtp_error'] = 'Kesalahan pada pelayan SMTP: '; 30 | $PHPMAILER_LANG['variable_set'] = 'Tidak dapat mengatur atau mengatur ulang variabel: '; 31 | $PHPMAILER_LANG['extension_missing'] = 'Ekstensi PHP tidak tersedia: '; 32 | -------------------------------------------------------------------------------- /PHPMailer-master/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- 1 | =5.5.0", 30 | "ext-ctype": "*", 31 | "ext-filter": "*", 32 | "ext-hash": "*" 33 | }, 34 | "require-dev": { 35 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", 36 | "doctrine/annotations": "^1.2", 37 | "phpcompatibility/php-compatibility": "^9.3.5", 38 | "roave/security-advisories": "dev-latest", 39 | "squizlabs/php_codesniffer": "^3.5.6", 40 | "yoast/phpunit-polyfills": "^0.2.0" 41 | }, 42 | "suggest": { 43 | "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", 44 | "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", 45 | "league/oauth2-google": "Needed for Google XOAUTH2 authentication", 46 | "psr/log": "For optional PSR-3 debug logging", 47 | "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", 48 | "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" 49 | }, 50 | "autoload": { 51 | "psr-4": { 52 | "PHPMailer\\PHPMailer\\": "src/" 53 | } 54 | }, 55 | "autoload-dev": { 56 | "psr-4": { 57 | "PHPMailer\\Test\\": "test/" 58 | } 59 | }, 60 | "license": "LGPL-2.1-only", 61 | "scripts": { 62 | "check": "./vendor/bin/phpcs", 63 | "test": "./vendor/bin/phpunit" 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /profile.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | Welcome 18 | 19 | 20 | 21 | 22 | 23 |
24 |

Welcome

25 |
26 | 27 | 28 |
29 |
30 |
31 | 32 |
Warm Welcome
33 |
34 | 35 | 36 | 37 | Hi, firstname?> 38 | 39 |

40 | 41 | 42 | 43 | 44 |
45 | 46 | verify Acount First 47 |
48 |
49 | 50 | 51 | 52 | 53 |
54 | 55 | 56 | 69 | 70 | 71 | 72 | 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | $data['email']]); 27 | if(is_array($check)){ 28 | $errors[] = "That email already exists"; 29 | } 30 | 31 | //save 32 | if(count($errors) == 0){ 33 | 34 | $arr['firstname'] = $data['firstname']; 35 | $arr['lastname'] = $data['lastname']; 36 | $arr['email'] = $data['email']; 37 | $arr['password'] = hash('sha256',$data['password']); 38 | $arr['date'] = date("Y-m-d H:i:s"); 39 | 40 | $query = "insert into users (firstname,lastname,email,password,date) values 41 | (:firstname,:lastname,:email,:password,:date)"; 42 | 43 | database_run($query,$arr); 44 | } 45 | return $errors; 46 | } 47 | 48 | function login($data) 49 | { 50 | $errors = array(); 51 | 52 | //validate 53 | if(!filter_var($data['email'],FILTER_VALIDATE_EMAIL)){ 54 | $errors[] = "Please enter a valid email"; 55 | } 56 | 57 | if(strlen(trim($data['password'])) < 4){ 58 | $errors[] = "Password must be atleast 4 chars long"; 59 | } 60 | 61 | //check 62 | if(count($errors) == 0){ 63 | 64 | $arr['email'] = $data['email']; 65 | $password = hash('sha256', $data['password']); 66 | 67 | $query = "select * from users where email = :email limit 1"; 68 | 69 | $row = database_run($query,$arr); 70 | 71 | if(is_array($row)){ 72 | $row = $row[0]; 73 | 74 | if($password === $row->password){ 75 | 76 | $_SESSION['USER'] = $row; 77 | $_SESSION['LOGGED_IN'] = true; 78 | }else{ 79 | $errors[] = "wrong email or password"; 80 | } 81 | 82 | }else{ 83 | $errors[] = "wrong email or password"; 84 | } 85 | } 86 | return $errors; 87 | } 88 | 89 | function database_run($query,$vars = array()) 90 | { 91 | $string = "mysql:host=localhost;dbname=verify_db"; 92 | $con = new PDO($string,'root',''); 93 | 94 | if(!$con){ 95 | return false; 96 | } 97 | 98 | $stm = $con->prepare($query); 99 | $check = $stm->execute($vars); 100 | 101 | if($check){ 102 | 103 | $data = $stm->fetchAll(PDO::FETCH_OBJ); 104 | 105 | if(count($data) > 0){ 106 | return $data; 107 | } 108 | } 109 | 110 | return false; 111 | } 112 | 113 | function check_login($redirect = true){ 114 | 115 | if(isset($_SESSION['USER']) && isset($_SESSION['LOGGED_IN'])){ 116 | 117 | return true; 118 | } 119 | 120 | if($redirect){ 121 | header("Location: login.php"); 122 | die; 123 | }else{ 124 | return false; 125 | } 126 | 127 | } 128 | 129 | function check_verified(){ 130 | 131 | $id = $_SESSION['USER']->id; 132 | $query = "select * from users where id = '$id' limit 1"; 133 | $row = database_run($query); 134 | 135 | if(is_array($row)){ 136 | $row = $row[0]; 137 | 138 | if($row->email == $row->email_verified){ 139 | 140 | return true; 141 | } 142 | } 143 | 144 | return false; 145 | 146 | } 147 | 148 | -------------------------------------------------------------------------------- /PHPMailer-master/src/OAuth.php: -------------------------------------------------------------------------------- 1 | 10 | * @author Jim Jagielski (jimjag) 11 | * @author Andy Prevost (codeworxtech) 12 | * @author Brent R. Matzelle (original founder) 13 | * @copyright 2012 - 2020 Marcus Bointon 14 | * @copyright 2010 - 2012 Jim Jagielski 15 | * @copyright 2004 - 2009 Andy Prevost 16 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 17 | * @note This program is distributed in the hope that it will be useful - WITHOUT 18 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 19 | * FITNESS FOR A PARTICULAR PURPOSE. 20 | */ 21 | 22 | namespace PHPMailer\PHPMailer; 23 | 24 | use League\OAuth2\Client\Grant\RefreshToken; 25 | use League\OAuth2\Client\Provider\AbstractProvider; 26 | use League\OAuth2\Client\Token\AccessToken; 27 | 28 | /** 29 | * OAuth - OAuth2 authentication wrapper class. 30 | * Uses the oauth2-client package from the League of Extraordinary Packages. 31 | * 32 | * @see http://oauth2-client.thephpleague.com 33 | * 34 | * @author Marcus Bointon (Synchro/coolbru) 35 | */ 36 | class OAuth 37 | { 38 | /** 39 | * An instance of the League OAuth Client Provider. 40 | * 41 | * @var AbstractProvider 42 | */ 43 | protected $provider; 44 | 45 | /** 46 | * The current OAuth access token. 47 | * 48 | * @var AccessToken 49 | */ 50 | protected $oauthToken; 51 | 52 | /** 53 | * The user's email address, usually used as the login ID 54 | * and also the from address when sending email. 55 | * 56 | * @var string 57 | */ 58 | protected $oauthUserEmail = ''; 59 | 60 | /** 61 | * The client secret, generated in the app definition of the service you're connecting to. 62 | * 63 | * @var string 64 | */ 65 | protected $oauthClientSecret = ''; 66 | 67 | /** 68 | * The client ID, generated in the app definition of the service you're connecting to. 69 | * 70 | * @var string 71 | */ 72 | protected $oauthClientId = ''; 73 | 74 | /** 75 | * The refresh token, used to obtain new AccessTokens. 76 | * 77 | * @var string 78 | */ 79 | protected $oauthRefreshToken = ''; 80 | 81 | /** 82 | * OAuth constructor. 83 | * 84 | * @param array $options Associative array containing 85 | * `provider`, `userName`, `clientSecret`, `clientId` and `refreshToken` elements 86 | */ 87 | public function __construct($options) 88 | { 89 | $this->provider = $options['provider']; 90 | $this->oauthUserEmail = $options['userName']; 91 | $this->oauthClientSecret = $options['clientSecret']; 92 | $this->oauthClientId = $options['clientId']; 93 | $this->oauthRefreshToken = $options['refreshToken']; 94 | } 95 | 96 | /** 97 | * Get a new RefreshToken. 98 | * 99 | * @return RefreshToken 100 | */ 101 | protected function getGrant() 102 | { 103 | return new RefreshToken(); 104 | } 105 | 106 | /** 107 | * Get a new AccessToken. 108 | * 109 | * @return AccessToken 110 | */ 111 | protected function getToken() 112 | { 113 | return $this->provider->getAccessToken( 114 | $this->getGrant(), 115 | ['refresh_token' => $this->oauthRefreshToken] 116 | ); 117 | } 118 | 119 | /** 120 | * Generate a base64-encoded OAuth token. 121 | * 122 | * @return string 123 | */ 124 | public function getOauth64() 125 | { 126 | //Get a new token if it's not available or has expired 127 | if (null === $this->oauthToken || $this->oauthToken->hasExpired()) { 128 | $this->oauthToken = $this->getToken(); 129 | } 130 | 131 | return base64_encode( 132 | 'user=' . 133 | $this->oauthUserEmail . 134 | "\001auth=Bearer " . 135 | $this->oauthToken . 136 | "\001\001" 137 | ); 138 | } 139 | } 140 | -------------------------------------------------------------------------------- /PHPMailer-master/get_oauth_token.php: -------------------------------------------------------------------------------- 1 | 9 | * @author Jim Jagielski (jimjag) 10 | * @author Andy Prevost (codeworxtech) 11 | * @author Brent R. Matzelle (original founder) 12 | * @copyright 2012 - 2020 Marcus Bointon 13 | * @copyright 2010 - 2012 Jim Jagielski 14 | * @copyright 2004 - 2009 Andy Prevost 15 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 16 | * @note This program is distributed in the hope that it will be useful - WITHOUT 17 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 18 | * FITNESS FOR A PARTICULAR PURPOSE. 19 | */ 20 | 21 | /** 22 | * Get an OAuth2 token from an OAuth2 provider. 23 | * * Install this script on your server so that it's accessible 24 | * as [https/http]:////get_oauth_token.php 25 | * e.g.: http://localhost/phpmailer/get_oauth_token.php 26 | * * Ensure dependencies are installed with 'composer install' 27 | * * Set up an app in your Google/Yahoo/Microsoft account 28 | * * Set the script address as the app's redirect URL 29 | * If no refresh token is obtained when running this file, 30 | * revoke access to your app and run the script again. 31 | */ 32 | 33 | namespace PHPMailer\PHPMailer; 34 | 35 | /** 36 | * Aliases for League Provider Classes 37 | * Make sure you have added these to your composer.json and run `composer install` 38 | * Plenty to choose from here: 39 | * @see http://oauth2-client.thephpleague.com/providers/thirdparty/ 40 | */ 41 | //@see https://github.com/thephpleague/oauth2-google 42 | use League\OAuth2\Client\Provider\Google; 43 | //@see https://packagist.org/packages/hayageek/oauth2-yahoo 44 | use Hayageek\OAuth2\Client\Provider\Yahoo; 45 | //@see https://github.com/stevenmaguire/oauth2-microsoft 46 | use Stevenmaguire\OAuth2\Client\Provider\Microsoft; 47 | 48 | if (!isset($_GET['code']) && !isset($_GET['provider'])) { 49 | ?> 50 | 51 | Select Provider:
52 | Google
53 | Yahoo
54 | Microsoft/Outlook/Hotmail/Live/Office365
55 | 56 | 57 | $clientId, 88 | 'clientSecret' => $clientSecret, 89 | 'redirectUri' => $redirectUri, 90 | 'accessType' => 'offline' 91 | ]; 92 | 93 | $options = []; 94 | $provider = null; 95 | 96 | switch ($providerName) { 97 | case 'Google': 98 | $provider = new Google($params); 99 | $options = [ 100 | 'scope' => [ 101 | 'https://mail.google.com/' 102 | ] 103 | ]; 104 | break; 105 | case 'Yahoo': 106 | $provider = new Yahoo($params); 107 | break; 108 | case 'Microsoft': 109 | $provider = new Microsoft($params); 110 | $options = [ 111 | 'scope' => [ 112 | 'wl.imap', 113 | 'wl.offline_access' 114 | ] 115 | ]; 116 | break; 117 | } 118 | 119 | if (null === $provider) { 120 | exit('Provider missing'); 121 | } 122 | 123 | if (!isset($_GET['code'])) { 124 | //If we don't have an authorization code then get one 125 | $authUrl = $provider->getAuthorizationUrl($options); 126 | $_SESSION['oauth2state'] = $provider->getState(); 127 | header('Location: ' . $authUrl); 128 | exit; 129 | //Check given state against previously stored one to mitigate CSRF attack 130 | } elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) { 131 | unset($_SESSION['oauth2state']); 132 | unset($_SESSION['provider']); 133 | exit('Invalid state'); 134 | } else { 135 | unset($_SESSION['provider']); 136 | //Try to get an access token (using the authorization code grant) 137 | $token = $provider->getAccessToken( 138 | 'authorization_code', 139 | [ 140 | 'code' => $_GET['code'] 141 | ] 142 | ); 143 | //Use this to interact with an API on the users behalf 144 | //Use this to get a new access token if the old one expires 145 | echo 'Refresh Token: ', $token->getRefreshToken(); 146 | } 147 | -------------------------------------------------------------------------------- /PHPMailer-master/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security notices relating to PHPMailer 2 | 3 | Please disclose any security issues or vulnerabilities found through [Tidelift's coordinated disclosure system](https://tidelift.com/security) or to the maintainers privately. 4 | 5 | PHPMailer versions between 6.1.8 and 6.4.0 contain a regression of the earlier CVE-2018-19296 object injection vulnerability as a result of [a fix for Windows UNC paths in 6.1.8](https://github.com/PHPMailer/PHPMailer/commit/e2e07a355ee8ff36aba21d0242c5950c56e4c6f9). Recorded as [CVE-2020-36326](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-36326). Reported by Fariskhi Vidyan via Tidelift. 6.4.1 fixes this issue, and also enforces stricter checks for URL schemes in local path contexts. 6 | 7 | PHPMailer versions 6.1.5 and earlier contain an output escaping bug that occurs in `Content-Type` and `Content-Disposition` when filenames passed into `addAttachment` and other methods that accept attachment names contain double quote characters, in contravention of RFC822 3.4.1. No specific vulnerability has been found relating to this, but it could allow file attachments to bypass attachment filters that are based on matching filename extensions. Recorded as [CVE-2020-13625](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-13625). Reported by Elar Lang of Clarified Security. 8 | 9 | PHPMailer versions prior to 6.0.6 and 5.2.27 are vulnerable to an object injection attack by passing `phar://` paths into `addAttachment()` and other functions that may receive unfiltered local paths, possibly leading to RCE. Recorded as [CVE-2018-19296](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19296). See [this article](https://knasmueller.net/5-answers-about-php-phar-exploitation) for more info on this type of vulnerability. Mitigated by blocking the use of paths containing URL-protocol style prefixes such as `phar://`. Reported by Sehun Oh of cyberone.kr. 10 | 11 | PHPMailer versions prior to 5.2.24 (released July 26th 2017) have an XSS vulnerability in one of the code examples, [CVE-2017-11503](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-11503). The `code_generator.phps` example did not filter user input prior to output. This file is distributed with a `.phps` extension, so it it not normally executable unless it is explicitly renamed, and the file is not included when PHPMailer is loaded through composer, so it is safe by default. There was also an undisclosed potential XSS vulnerability in the default exception handler (unused by default). Patches for both issues kindly provided by Patrick Monnerat of the Fedora Project. 12 | 13 | PHPMailer versions prior to 5.2.22 (released January 9th 2017) have a local file disclosure vulnerability, [CVE-2017-5223](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-5223). If content passed into `msgHTML()` is sourced from unfiltered user input, relative paths can map to absolute local file paths and added as attachments. Also note that `addAttachment` (just like `file_get_contents`, `passthru`, `unlink`, etc) should not be passed user-sourced params either! Reported by Yongxiang Li of Asiasecurity. 14 | 15 | PHPMailer versions prior to 5.2.20 (released December 28th 2016) are vulnerable to [CVE-2016-10045](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-10045) a remote code execution vulnerability, responsibly reported by [Dawid Golunski](https://legalhackers.com/advisories/PHPMailer-Exploit-Remote-Code-Exec-CVE-2016-10045-Vuln-Patch-Bypass.html), and patched by Paul Buonopane (@Zenexer). 16 | 17 | PHPMailer versions prior to 5.2.18 (released December 2016) are vulnerable to [CVE-2016-10033](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-10033) a remote code execution vulnerability, responsibly reported by [Dawid Golunski](http://legalhackers.com/advisories/PHPMailer-Exploit-Remote-Code-Exec-CVE-2016-10033-Vuln.html). 18 | 19 | PHPMailer versions prior to 5.2.14 (released November 2015) are vulnerable to [CVE-2015-8476](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-8476) an SMTP CRLF injection bug permitting arbitrary message sending. 20 | 21 | PHPMailer versions prior to 5.2.10 (released May 2015) are vulnerable to [CVE-2008-5619](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-5619), a remote code execution vulnerability in the bundled html2text library. This file was removed in 5.2.10, so if you are using a version prior to that and make use of the html2text function, it's vitally important that you upgrade and remove this file. 22 | 23 | PHPMailer versions prior to 2.0.7 and 2.2.1 are vulnerable to [CVE-2012-0796](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-0796), an email header injection attack. 24 | 25 | Joomla 1.6.0 uses PHPMailer in an unsafe way, allowing it to reveal local file paths, reported in [CVE-2011-3747](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-3747). 26 | 27 | PHPMailer didn't sanitise the `$lang_path` parameter in `SetLanguage`. This wasn't a problem in itself, but some apps (PHPClassifieds, ATutor) also failed to sanitise user-provided parameters passed to it, permitting semi-arbitrary local file inclusion, reported in [CVE-2010-4914](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-4914), [CVE-2007-2021](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2007-2021) and [CVE-2006-5734](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2006-5734). 28 | 29 | PHPMailer 1.7.2 and earlier contained a possible DDoS vulnerability reported in [CVE-2005-1807](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2005-1807). 30 | 31 | PHPMailer 1.7 and earlier (June 2003) have a possible vulnerability in the `SendmailSend` method where shell commands may not be sanitised. Reported in [CVE-2007-3215](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2007-3215). 32 | 33 | -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | Welcome 32 | 33 | 34 | 35 | 36 | 37 |
38 |

PHPMailer -Verfication code.

39 |
40 | 41 | 42 |
43 |
44 |
45 | 46 |
Have an Account? Login
47 |
48 | 49 | 0):?> 50 | 51 |
52 | 53 | 54 | 55 |
56 | 57 | 58 | 59 |
60 | 61 |
62 | 63 | 64 |
65 |
66 |
67 | 68 | 69 |
70 |
71 |
72 | 73 | 74 |
75 |
76 |
77 | 78 | 79 | 80 |
81 |
82 |
83 | 84 | 85 |
86 |
87 | 88 |
89 |
90 | 91 | 92 |
93 |
94 | or 95 |
96 |
97 | 98 | 99 | 100 |
101 | 102 | Continue with google 103 |
104 | 105 | 106 |
107 | Sign Up Now? 108 | SIGN UP 109 |
110 | 111 | 112 |
113 |
114 | 115 | 116 | 129 | 130 | 131 | 132 | 151 | 152 | 153 | 154 | -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.2.0-beta1 (https://getbootstrap.com/) 3 | * Copyright 2011-2022 The Bootstrap Authors 4 | * Copyright 2011-2022 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-heading-color: ;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--bs-link-color);text-decoration:underline}a:hover{color:var(--bs-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:rgba(var(--bs-body-color-rgb),.75);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important} 8 | /*# sourceMappingURL=bootstrap-reboot.min.css.map */ -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.2.0-beta1 (https://getbootstrap.com/) 3 | * Copyright 2011-2022 The Bootstrap Authors 4 | * Copyright 2011-2022 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-heading-color: ;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--bs-link-color);text-decoration:underline}a:hover{color:var(--bs-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:rgba(var(--bs-body-color-rgb),.75);text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important} 8 | /*# sourceMappingURL=bootstrap-reboot.rtl.min.css.map */ -------------------------------------------------------------------------------- /verify.php: -------------------------------------------------------------------------------- 1 | email; 17 | 18 | $query = "insert into verify (code,expires,email) values (:code,:expires,:email)"; 19 | database_run($query,$vars); 20 | 21 | $message = "Code yawe ni: " . $vars['code']; 22 | $subject = "Email verification"; 23 | $recipient = $vars['email']; 24 | send_mail($recipient,$subject,$message); 25 | } 26 | 27 | if($_SERVER['REQUEST_METHOD'] == "POST"){ 28 | 29 | if(!check_verified()){ 30 | 31 | $query = "select * from verify where code = :code && email = :email"; 32 | $vars = array(); 33 | $vars['email'] = $_SESSION['USER']->email; 34 | $vars['code'] = $_POST['code']; 35 | 36 | $row = database_run($query,$vars); 37 | 38 | if(is_array($row)){ 39 | $row = $row[0]; 40 | $time = time(); 41 | 42 | if($row->expires > $time){ 43 | 44 | $id = $_SESSION['USER']->id; 45 | $query = "update users set email_verified = email where id = '$id' limit 1"; 46 | 47 | database_run($query); 48 | 49 | header("Location: profile.php"); 50 | die; 51 | }else{ 52 | echo "Code expired"; 53 | } 54 | 55 | }else{ 56 | echo "wrong code"; 57 | } 58 | }else{ 59 | echo "You're already verified"; 60 | } 61 | } 62 | 63 | ?> 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | Welcome 77 | 78 | 79 | 80 | 81 | 82 |
83 |

Assignment.

84 |
85 | 86 | 87 |
88 |
89 |
90 | 91 |
An email was sent to your address. paste the code from the email here
92 |
93 | 94 | 0):?> 95 | 96 |
97 | 98 | 99 | 100 |
101 | 102 | 103 | 104 |
105 | 106 |
107 | 108 | 109 |
110 |
111 |
112 | 113 | 114 |
115 |
116 |
117 | 118 | 119 |
120 |
121 | 122 |
123 |
124 | 125 | 126 |
127 |
128 | or 129 |
130 |
131 | 132 | 133 | 134 |
135 | 136 | Continue with google 137 |
138 | 139 | 140 |
141 | Sign Up Now? 142 | SIGN UP 143 |
144 | 145 | 146 |
147 |
148 | 149 | 150 | 163 | 164 | 165 | 166 | 185 | 186 | 187 | 188 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | Welcome 32 | 33 | 34 | 35 | 36 | 37 |
38 |

PHPMailer -Verfication code.

39 |
40 | 41 | 42 |
43 |
44 |
45 | 46 |
Create an account
47 |
48 | 49 | 0):?> 50 | 51 |
52 | 53 | 54 | 55 |
56 | 57 | 58 | 59 |
60 | 61 |
62 |
63 |
64 | 65 | 66 |
67 |
68 | 69 |
70 |
71 | 72 | 73 |
74 |
75 |
76 | 77 | 78 |
79 |
80 |
81 | 82 | 83 |
84 |
85 |
86 | 87 | 88 |
89 |
90 |
91 | 92 | 93 | 94 |
95 |
96 |
97 | 98 | 99 |
100 |
101 | 102 |
103 |
104 | 105 | 106 |
107 |
108 | or 109 |
110 |
111 | 112 | 113 | 114 |
115 | 116 | Continue with google 117 |
118 | 119 | 120 |
121 | Already have an account? 122 | SIGN IN 123 |
124 | 125 |
126 |
127 |
128 | 129 | 130 | 143 | 144 | 145 | 146 | 165 | 166 | 167 | 168 | -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.2.0-beta1 (https://getbootstrap.com/) 3 | * Copyright 2011-2022 The Bootstrap Authors 4 | * Copyright 2011-2022 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | :root { 9 | --bs-blue: #0d6efd; 10 | --bs-indigo: #6610f2; 11 | --bs-purple: #6f42c1; 12 | --bs-pink: #d63384; 13 | --bs-red: #dc3545; 14 | --bs-orange: #fd7e14; 15 | --bs-yellow: #ffc107; 16 | --bs-green: #198754; 17 | --bs-teal: #20c997; 18 | --bs-cyan: #0dcaf0; 19 | --bs-black: #000; 20 | --bs-white: #fff; 21 | --bs-gray: #6c757d; 22 | --bs-gray-dark: #343a40; 23 | --bs-gray-100: #f8f9fa; 24 | --bs-gray-200: #e9ecef; 25 | --bs-gray-300: #dee2e6; 26 | --bs-gray-400: #ced4da; 27 | --bs-gray-500: #adb5bd; 28 | --bs-gray-600: #6c757d; 29 | --bs-gray-700: #495057; 30 | --bs-gray-800: #343a40; 31 | --bs-gray-900: #212529; 32 | --bs-primary: #0d6efd; 33 | --bs-secondary: #6c757d; 34 | --bs-success: #198754; 35 | --bs-info: #0dcaf0; 36 | --bs-warning: #ffc107; 37 | --bs-danger: #dc3545; 38 | --bs-light: #f8f9fa; 39 | --bs-dark: #212529; 40 | --bs-primary-rgb: 13, 110, 253; 41 | --bs-secondary-rgb: 108, 117, 125; 42 | --bs-success-rgb: 25, 135, 84; 43 | --bs-info-rgb: 13, 202, 240; 44 | --bs-warning-rgb: 255, 193, 7; 45 | --bs-danger-rgb: 220, 53, 69; 46 | --bs-light-rgb: 248, 249, 250; 47 | --bs-dark-rgb: 33, 37, 41; 48 | --bs-white-rgb: 255, 255, 255; 49 | --bs-black-rgb: 0, 0, 0; 50 | --bs-body-color-rgb: 33, 37, 41; 51 | --bs-body-bg-rgb: 255, 255, 255; 52 | --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 53 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 54 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); 55 | --bs-body-font-family: var(--bs-font-sans-serif); 56 | --bs-body-font-size: 1rem; 57 | --bs-body-font-weight: 400; 58 | --bs-body-line-height: 1.5; 59 | --bs-body-color: #212529; 60 | --bs-body-bg: #fff; 61 | --bs-border-width: 1px; 62 | --bs-border-style: solid; 63 | --bs-border-color: #dee2e6; 64 | --bs-border-color-translucent: rgba(0, 0, 0, 0.175); 65 | --bs-border-radius: 0.375rem; 66 | --bs-border-radius-sm: 0.25rem; 67 | --bs-border-radius-lg: 0.5rem; 68 | --bs-border-radius-xl: 1rem; 69 | --bs-border-radius-2xl: 2rem; 70 | --bs-border-radius-pill: 50rem; 71 | --bs-heading-color: ; 72 | --bs-link-color: #0d6efd; 73 | --bs-link-hover-color: #0a58ca; 74 | --bs-code-color: #d63384; 75 | --bs-highlight-bg: #fff3cd; 76 | } 77 | 78 | *, 79 | *::before, 80 | *::after { 81 | box-sizing: border-box; 82 | } 83 | 84 | @media (prefers-reduced-motion: no-preference) { 85 | :root { 86 | scroll-behavior: smooth; 87 | } 88 | } 89 | 90 | body { 91 | margin: 0; 92 | font-family: var(--bs-body-font-family); 93 | font-size: var(--bs-body-font-size); 94 | font-weight: var(--bs-body-font-weight); 95 | line-height: var(--bs-body-line-height); 96 | color: var(--bs-body-color); 97 | text-align: var(--bs-body-text-align); 98 | background-color: var(--bs-body-bg); 99 | -webkit-text-size-adjust: 100%; 100 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 101 | } 102 | 103 | hr { 104 | margin: 1rem 0; 105 | color: inherit; 106 | border: 0; 107 | border-top: 1px solid; 108 | opacity: 0.25; 109 | } 110 | 111 | h6, h5, h4, h3, h2, h1 { 112 | margin-top: 0; 113 | margin-bottom: 0.5rem; 114 | font-weight: 500; 115 | line-height: 1.2; 116 | color: var(--bs-heading-color); 117 | } 118 | 119 | h1 { 120 | font-size: calc(1.375rem + 1.5vw); 121 | } 122 | @media (min-width: 1200px) { 123 | h1 { 124 | font-size: 2.5rem; 125 | } 126 | } 127 | 128 | h2 { 129 | font-size: calc(1.325rem + 0.9vw); 130 | } 131 | @media (min-width: 1200px) { 132 | h2 { 133 | font-size: 2rem; 134 | } 135 | } 136 | 137 | h3 { 138 | font-size: calc(1.3rem + 0.6vw); 139 | } 140 | @media (min-width: 1200px) { 141 | h3 { 142 | font-size: 1.75rem; 143 | } 144 | } 145 | 146 | h4 { 147 | font-size: calc(1.275rem + 0.3vw); 148 | } 149 | @media (min-width: 1200px) { 150 | h4 { 151 | font-size: 1.5rem; 152 | } 153 | } 154 | 155 | h5 { 156 | font-size: 1.25rem; 157 | } 158 | 159 | h6 { 160 | font-size: 1rem; 161 | } 162 | 163 | p { 164 | margin-top: 0; 165 | margin-bottom: 1rem; 166 | } 167 | 168 | abbr[title] { 169 | -webkit-text-decoration: underline dotted; 170 | text-decoration: underline dotted; 171 | cursor: help; 172 | -webkit-text-decoration-skip-ink: none; 173 | text-decoration-skip-ink: none; 174 | } 175 | 176 | address { 177 | margin-bottom: 1rem; 178 | font-style: normal; 179 | line-height: inherit; 180 | } 181 | 182 | ol, 183 | ul { 184 | padding-right: 2rem; 185 | } 186 | 187 | ol, 188 | ul, 189 | dl { 190 | margin-top: 0; 191 | margin-bottom: 1rem; 192 | } 193 | 194 | ol ol, 195 | ul ul, 196 | ol ul, 197 | ul ol { 198 | margin-bottom: 0; 199 | } 200 | 201 | dt { 202 | font-weight: 700; 203 | } 204 | 205 | dd { 206 | margin-bottom: 0.5rem; 207 | margin-right: 0; 208 | } 209 | 210 | blockquote { 211 | margin: 0 0 1rem; 212 | } 213 | 214 | b, 215 | strong { 216 | font-weight: bolder; 217 | } 218 | 219 | small { 220 | font-size: 0.875em; 221 | } 222 | 223 | mark { 224 | padding: 0.1875em; 225 | background-color: var(--bs-highlight-bg); 226 | } 227 | 228 | sub, 229 | sup { 230 | position: relative; 231 | font-size: 0.75em; 232 | line-height: 0; 233 | vertical-align: baseline; 234 | } 235 | 236 | sub { 237 | bottom: -0.25em; 238 | } 239 | 240 | sup { 241 | top: -0.5em; 242 | } 243 | 244 | a { 245 | color: var(--bs-link-color); 246 | text-decoration: underline; 247 | } 248 | a:hover { 249 | color: var(--bs-link-hover-color); 250 | } 251 | 252 | a:not([href]):not([class]), a:not([href]):not([class]):hover { 253 | color: inherit; 254 | text-decoration: none; 255 | } 256 | 257 | pre, 258 | code, 259 | kbd, 260 | samp { 261 | font-family: var(--bs-font-monospace); 262 | font-size: 1em; 263 | } 264 | 265 | pre { 266 | display: block; 267 | margin-top: 0; 268 | margin-bottom: 1rem; 269 | overflow: auto; 270 | font-size: 0.875em; 271 | } 272 | pre code { 273 | font-size: inherit; 274 | color: inherit; 275 | word-break: normal; 276 | } 277 | 278 | code { 279 | font-size: 0.875em; 280 | color: var(--bs-code-color); 281 | word-wrap: break-word; 282 | } 283 | a > code { 284 | color: inherit; 285 | } 286 | 287 | kbd { 288 | padding: 0.1875rem 0.375rem; 289 | font-size: 0.875em; 290 | color: var(--bs-body-bg); 291 | background-color: var(--bs-body-color); 292 | border-radius: 0.25rem; 293 | } 294 | kbd kbd { 295 | padding: 0; 296 | font-size: 1em; 297 | } 298 | 299 | figure { 300 | margin: 0 0 1rem; 301 | } 302 | 303 | img, 304 | svg { 305 | vertical-align: middle; 306 | } 307 | 308 | table { 309 | caption-side: bottom; 310 | border-collapse: collapse; 311 | } 312 | 313 | caption { 314 | padding-top: 0.5rem; 315 | padding-bottom: 0.5rem; 316 | color: rgba(var(--bs-body-color-rgb), 0.75); 317 | text-align: right; 318 | } 319 | 320 | th { 321 | text-align: inherit; 322 | text-align: -webkit-match-parent; 323 | } 324 | 325 | thead, 326 | tbody, 327 | tfoot, 328 | tr, 329 | td, 330 | th { 331 | border-color: inherit; 332 | border-style: solid; 333 | border-width: 0; 334 | } 335 | 336 | label { 337 | display: inline-block; 338 | } 339 | 340 | button { 341 | border-radius: 0; 342 | } 343 | 344 | button:focus:not(:focus-visible) { 345 | outline: 0; 346 | } 347 | 348 | input, 349 | button, 350 | select, 351 | optgroup, 352 | textarea { 353 | margin: 0; 354 | font-family: inherit; 355 | font-size: inherit; 356 | line-height: inherit; 357 | } 358 | 359 | button, 360 | select { 361 | text-transform: none; 362 | } 363 | 364 | [role=button] { 365 | cursor: pointer; 366 | } 367 | 368 | select { 369 | word-wrap: normal; 370 | } 371 | select:disabled { 372 | opacity: 1; 373 | } 374 | 375 | [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator { 376 | display: none !important; 377 | } 378 | 379 | button, 380 | [type=button], 381 | [type=reset], 382 | [type=submit] { 383 | -webkit-appearance: button; 384 | } 385 | button:not(:disabled), 386 | [type=button]:not(:disabled), 387 | [type=reset]:not(:disabled), 388 | [type=submit]:not(:disabled) { 389 | cursor: pointer; 390 | } 391 | 392 | ::-moz-focus-inner { 393 | padding: 0; 394 | border-style: none; 395 | } 396 | 397 | textarea { 398 | resize: vertical; 399 | } 400 | 401 | fieldset { 402 | min-width: 0; 403 | padding: 0; 404 | margin: 0; 405 | border: 0; 406 | } 407 | 408 | legend { 409 | float: right; 410 | width: 100%; 411 | padding: 0; 412 | margin-bottom: 0.5rem; 413 | font-size: calc(1.275rem + 0.3vw); 414 | line-height: inherit; 415 | } 416 | @media (min-width: 1200px) { 417 | legend { 418 | font-size: 1.5rem; 419 | } 420 | } 421 | legend + * { 422 | clear: right; 423 | } 424 | 425 | ::-webkit-datetime-edit-fields-wrapper, 426 | ::-webkit-datetime-edit-text, 427 | ::-webkit-datetime-edit-minute, 428 | ::-webkit-datetime-edit-hour-field, 429 | ::-webkit-datetime-edit-day-field, 430 | ::-webkit-datetime-edit-month-field, 431 | ::-webkit-datetime-edit-year-field { 432 | padding: 0; 433 | } 434 | 435 | ::-webkit-inner-spin-button { 436 | height: auto; 437 | } 438 | 439 | [type=search] { 440 | outline-offset: -2px; 441 | -webkit-appearance: textfield; 442 | } 443 | 444 | [type="tel"], 445 | [type="url"], 446 | [type="email"], 447 | [type="number"] { 448 | direction: ltr; 449 | } 450 | ::-webkit-search-decoration { 451 | -webkit-appearance: none; 452 | } 453 | 454 | ::-webkit-color-swatch-wrapper { 455 | padding: 0; 456 | } 457 | 458 | ::-webkit-file-upload-button { 459 | font: inherit; 460 | -webkit-appearance: button; 461 | } 462 | 463 | ::file-selector-button { 464 | font: inherit; 465 | -webkit-appearance: button; 466 | } 467 | 468 | output { 469 | display: inline-block; 470 | } 471 | 472 | iframe { 473 | border: 0; 474 | } 475 | 476 | summary { 477 | display: list-item; 478 | cursor: pointer; 479 | } 480 | 481 | progress { 482 | vertical-align: baseline; 483 | } 484 | 485 | [hidden] { 486 | display: none !important; 487 | } 488 | /*# sourceMappingURL=bootstrap-reboot.rtl.css.map */ -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.2.0-beta1 (https://getbootstrap.com/) 3 | * Copyright 2011-2022 The Bootstrap Authors 4 | * Copyright 2011-2022 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | :root { 9 | --bs-blue: #0d6efd; 10 | --bs-indigo: #6610f2; 11 | --bs-purple: #6f42c1; 12 | --bs-pink: #d63384; 13 | --bs-red: #dc3545; 14 | --bs-orange: #fd7e14; 15 | --bs-yellow: #ffc107; 16 | --bs-green: #198754; 17 | --bs-teal: #20c997; 18 | --bs-cyan: #0dcaf0; 19 | --bs-black: #000; 20 | --bs-white: #fff; 21 | --bs-gray: #6c757d; 22 | --bs-gray-dark: #343a40; 23 | --bs-gray-100: #f8f9fa; 24 | --bs-gray-200: #e9ecef; 25 | --bs-gray-300: #dee2e6; 26 | --bs-gray-400: #ced4da; 27 | --bs-gray-500: #adb5bd; 28 | --bs-gray-600: #6c757d; 29 | --bs-gray-700: #495057; 30 | --bs-gray-800: #343a40; 31 | --bs-gray-900: #212529; 32 | --bs-primary: #0d6efd; 33 | --bs-secondary: #6c757d; 34 | --bs-success: #198754; 35 | --bs-info: #0dcaf0; 36 | --bs-warning: #ffc107; 37 | --bs-danger: #dc3545; 38 | --bs-light: #f8f9fa; 39 | --bs-dark: #212529; 40 | --bs-primary-rgb: 13, 110, 253; 41 | --bs-secondary-rgb: 108, 117, 125; 42 | --bs-success-rgb: 25, 135, 84; 43 | --bs-info-rgb: 13, 202, 240; 44 | --bs-warning-rgb: 255, 193, 7; 45 | --bs-danger-rgb: 220, 53, 69; 46 | --bs-light-rgb: 248, 249, 250; 47 | --bs-dark-rgb: 33, 37, 41; 48 | --bs-white-rgb: 255, 255, 255; 49 | --bs-black-rgb: 0, 0, 0; 50 | --bs-body-color-rgb: 33, 37, 41; 51 | --bs-body-bg-rgb: 255, 255, 255; 52 | --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 53 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 54 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); 55 | --bs-body-font-family: var(--bs-font-sans-serif); 56 | --bs-body-font-size: 1rem; 57 | --bs-body-font-weight: 400; 58 | --bs-body-line-height: 1.5; 59 | --bs-body-color: #212529; 60 | --bs-body-bg: #fff; 61 | --bs-border-width: 1px; 62 | --bs-border-style: solid; 63 | --bs-border-color: #dee2e6; 64 | --bs-border-color-translucent: rgba(0, 0, 0, 0.175); 65 | --bs-border-radius: 0.375rem; 66 | --bs-border-radius-sm: 0.25rem; 67 | --bs-border-radius-lg: 0.5rem; 68 | --bs-border-radius-xl: 1rem; 69 | --bs-border-radius-2xl: 2rem; 70 | --bs-border-radius-pill: 50rem; 71 | --bs-heading-color: ; 72 | --bs-link-color: #0d6efd; 73 | --bs-link-hover-color: #0a58ca; 74 | --bs-code-color: #d63384; 75 | --bs-highlight-bg: #fff3cd; 76 | } 77 | 78 | *, 79 | *::before, 80 | *::after { 81 | box-sizing: border-box; 82 | } 83 | 84 | @media (prefers-reduced-motion: no-preference) { 85 | :root { 86 | scroll-behavior: smooth; 87 | } 88 | } 89 | 90 | body { 91 | margin: 0; 92 | font-family: var(--bs-body-font-family); 93 | font-size: var(--bs-body-font-size); 94 | font-weight: var(--bs-body-font-weight); 95 | line-height: var(--bs-body-line-height); 96 | color: var(--bs-body-color); 97 | text-align: var(--bs-body-text-align); 98 | background-color: var(--bs-body-bg); 99 | -webkit-text-size-adjust: 100%; 100 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 101 | } 102 | 103 | hr { 104 | margin: 1rem 0; 105 | color: inherit; 106 | border: 0; 107 | border-top: 1px solid; 108 | opacity: 0.25; 109 | } 110 | 111 | h6, h5, h4, h3, h2, h1 { 112 | margin-top: 0; 113 | margin-bottom: 0.5rem; 114 | font-weight: 500; 115 | line-height: 1.2; 116 | color: var(--bs-heading-color); 117 | } 118 | 119 | h1 { 120 | font-size: calc(1.375rem + 1.5vw); 121 | } 122 | @media (min-width: 1200px) { 123 | h1 { 124 | font-size: 2.5rem; 125 | } 126 | } 127 | 128 | h2 { 129 | font-size: calc(1.325rem + 0.9vw); 130 | } 131 | @media (min-width: 1200px) { 132 | h2 { 133 | font-size: 2rem; 134 | } 135 | } 136 | 137 | h3 { 138 | font-size: calc(1.3rem + 0.6vw); 139 | } 140 | @media (min-width: 1200px) { 141 | h3 { 142 | font-size: 1.75rem; 143 | } 144 | } 145 | 146 | h4 { 147 | font-size: calc(1.275rem + 0.3vw); 148 | } 149 | @media (min-width: 1200px) { 150 | h4 { 151 | font-size: 1.5rem; 152 | } 153 | } 154 | 155 | h5 { 156 | font-size: 1.25rem; 157 | } 158 | 159 | h6 { 160 | font-size: 1rem; 161 | } 162 | 163 | p { 164 | margin-top: 0; 165 | margin-bottom: 1rem; 166 | } 167 | 168 | abbr[title] { 169 | -webkit-text-decoration: underline dotted; 170 | text-decoration: underline dotted; 171 | cursor: help; 172 | -webkit-text-decoration-skip-ink: none; 173 | text-decoration-skip-ink: none; 174 | } 175 | 176 | address { 177 | margin-bottom: 1rem; 178 | font-style: normal; 179 | line-height: inherit; 180 | } 181 | 182 | ol, 183 | ul { 184 | padding-left: 2rem; 185 | } 186 | 187 | ol, 188 | ul, 189 | dl { 190 | margin-top: 0; 191 | margin-bottom: 1rem; 192 | } 193 | 194 | ol ol, 195 | ul ul, 196 | ol ul, 197 | ul ol { 198 | margin-bottom: 0; 199 | } 200 | 201 | dt { 202 | font-weight: 700; 203 | } 204 | 205 | dd { 206 | margin-bottom: 0.5rem; 207 | margin-left: 0; 208 | } 209 | 210 | blockquote { 211 | margin: 0 0 1rem; 212 | } 213 | 214 | b, 215 | strong { 216 | font-weight: bolder; 217 | } 218 | 219 | small { 220 | font-size: 0.875em; 221 | } 222 | 223 | mark { 224 | padding: 0.1875em; 225 | background-color: var(--bs-highlight-bg); 226 | } 227 | 228 | sub, 229 | sup { 230 | position: relative; 231 | font-size: 0.75em; 232 | line-height: 0; 233 | vertical-align: baseline; 234 | } 235 | 236 | sub { 237 | bottom: -0.25em; 238 | } 239 | 240 | sup { 241 | top: -0.5em; 242 | } 243 | 244 | a { 245 | color: var(--bs-link-color); 246 | text-decoration: underline; 247 | } 248 | a:hover { 249 | color: var(--bs-link-hover-color); 250 | } 251 | 252 | a:not([href]):not([class]), a:not([href]):not([class]):hover { 253 | color: inherit; 254 | text-decoration: none; 255 | } 256 | 257 | pre, 258 | code, 259 | kbd, 260 | samp { 261 | font-family: var(--bs-font-monospace); 262 | font-size: 1em; 263 | } 264 | 265 | pre { 266 | display: block; 267 | margin-top: 0; 268 | margin-bottom: 1rem; 269 | overflow: auto; 270 | font-size: 0.875em; 271 | } 272 | pre code { 273 | font-size: inherit; 274 | color: inherit; 275 | word-break: normal; 276 | } 277 | 278 | code { 279 | font-size: 0.875em; 280 | color: var(--bs-code-color); 281 | word-wrap: break-word; 282 | } 283 | a > code { 284 | color: inherit; 285 | } 286 | 287 | kbd { 288 | padding: 0.1875rem 0.375rem; 289 | font-size: 0.875em; 290 | color: var(--bs-body-bg); 291 | background-color: var(--bs-body-color); 292 | border-radius: 0.25rem; 293 | } 294 | kbd kbd { 295 | padding: 0; 296 | font-size: 1em; 297 | } 298 | 299 | figure { 300 | margin: 0 0 1rem; 301 | } 302 | 303 | img, 304 | svg { 305 | vertical-align: middle; 306 | } 307 | 308 | table { 309 | caption-side: bottom; 310 | border-collapse: collapse; 311 | } 312 | 313 | caption { 314 | padding-top: 0.5rem; 315 | padding-bottom: 0.5rem; 316 | color: rgba(var(--bs-body-color-rgb), 0.75); 317 | text-align: left; 318 | } 319 | 320 | th { 321 | text-align: inherit; 322 | text-align: -webkit-match-parent; 323 | } 324 | 325 | thead, 326 | tbody, 327 | tfoot, 328 | tr, 329 | td, 330 | th { 331 | border-color: inherit; 332 | border-style: solid; 333 | border-width: 0; 334 | } 335 | 336 | label { 337 | display: inline-block; 338 | } 339 | 340 | button { 341 | border-radius: 0; 342 | } 343 | 344 | button:focus:not(:focus-visible) { 345 | outline: 0; 346 | } 347 | 348 | input, 349 | button, 350 | select, 351 | optgroup, 352 | textarea { 353 | margin: 0; 354 | font-family: inherit; 355 | font-size: inherit; 356 | line-height: inherit; 357 | } 358 | 359 | button, 360 | select { 361 | text-transform: none; 362 | } 363 | 364 | [role=button] { 365 | cursor: pointer; 366 | } 367 | 368 | select { 369 | word-wrap: normal; 370 | } 371 | select:disabled { 372 | opacity: 1; 373 | } 374 | 375 | [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator { 376 | display: none !important; 377 | } 378 | 379 | button, 380 | [type=button], 381 | [type=reset], 382 | [type=submit] { 383 | -webkit-appearance: button; 384 | } 385 | button:not(:disabled), 386 | [type=button]:not(:disabled), 387 | [type=reset]:not(:disabled), 388 | [type=submit]:not(:disabled) { 389 | cursor: pointer; 390 | } 391 | 392 | ::-moz-focus-inner { 393 | padding: 0; 394 | border-style: none; 395 | } 396 | 397 | textarea { 398 | resize: vertical; 399 | } 400 | 401 | fieldset { 402 | min-width: 0; 403 | padding: 0; 404 | margin: 0; 405 | border: 0; 406 | } 407 | 408 | legend { 409 | float: left; 410 | width: 100%; 411 | padding: 0; 412 | margin-bottom: 0.5rem; 413 | font-size: calc(1.275rem + 0.3vw); 414 | line-height: inherit; 415 | } 416 | @media (min-width: 1200px) { 417 | legend { 418 | font-size: 1.5rem; 419 | } 420 | } 421 | legend + * { 422 | clear: left; 423 | } 424 | 425 | ::-webkit-datetime-edit-fields-wrapper, 426 | ::-webkit-datetime-edit-text, 427 | ::-webkit-datetime-edit-minute, 428 | ::-webkit-datetime-edit-hour-field, 429 | ::-webkit-datetime-edit-day-field, 430 | ::-webkit-datetime-edit-month-field, 431 | ::-webkit-datetime-edit-year-field { 432 | padding: 0; 433 | } 434 | 435 | ::-webkit-inner-spin-button { 436 | height: auto; 437 | } 438 | 439 | [type=search] { 440 | outline-offset: -2px; 441 | -webkit-appearance: textfield; 442 | } 443 | 444 | /* rtl:raw: 445 | [type="tel"], 446 | [type="url"], 447 | [type="email"], 448 | [type="number"] { 449 | direction: ltr; 450 | } 451 | */ 452 | ::-webkit-search-decoration { 453 | -webkit-appearance: none; 454 | } 455 | 456 | ::-webkit-color-swatch-wrapper { 457 | padding: 0; 458 | } 459 | 460 | ::-webkit-file-upload-button { 461 | font: inherit; 462 | -webkit-appearance: button; 463 | } 464 | 465 | ::file-selector-button { 466 | font: inherit; 467 | -webkit-appearance: button; 468 | } 469 | 470 | output { 471 | display: inline-block; 472 | } 473 | 474 | iframe { 475 | border: 0; 476 | } 477 | 478 | summary { 479 | display: list-item; 480 | cursor: pointer; 481 | } 482 | 483 | progress { 484 | vertical-align: baseline; 485 | } 486 | 487 | [hidden] { 488 | display: none !important; 489 | } 490 | 491 | /*# sourceMappingURL=bootstrap-reboot.css.map */ -------------------------------------------------------------------------------- /PHPMailer-master/src/POP3.php: -------------------------------------------------------------------------------- 1 | 10 | * @author Jim Jagielski (jimjag) 11 | * @author Andy Prevost (codeworxtech) 12 | * @author Brent R. Matzelle (original founder) 13 | * @copyright 2012 - 2020 Marcus Bointon 14 | * @copyright 2010 - 2012 Jim Jagielski 15 | * @copyright 2004 - 2009 Andy Prevost 16 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 17 | * @note This program is distributed in the hope that it will be useful - WITHOUT 18 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 19 | * FITNESS FOR A PARTICULAR PURPOSE. 20 | */ 21 | 22 | namespace PHPMailer\PHPMailer; 23 | 24 | /** 25 | * PHPMailer POP-Before-SMTP Authentication Class. 26 | * Specifically for PHPMailer to use for RFC1939 POP-before-SMTP authentication. 27 | * 1) This class does not support APOP authentication. 28 | * 2) Opening and closing lots of POP3 connections can be quite slow. If you need 29 | * to send a batch of emails then just perform the authentication once at the start, 30 | * and then loop through your mail sending script. Providing this process doesn't 31 | * take longer than the verification period lasts on your POP3 server, you should be fine. 32 | * 3) This is really ancient technology; you should only need to use it to talk to very old systems. 33 | * 4) This POP3 class is deliberately lightweight and incomplete, implementing just 34 | * enough to do authentication. 35 | * If you want a more complete class there are other POP3 classes for PHP available. 36 | * 37 | * @author Richard Davey (original author) 38 | * @author Marcus Bointon (Synchro/coolbru) 39 | * @author Jim Jagielski (jimjag) 40 | * @author Andy Prevost (codeworxtech) 41 | */ 42 | class POP3 43 | { 44 | /** 45 | * The POP3 PHPMailer Version number. 46 | * 47 | * @var string 48 | */ 49 | const VERSION = '6.4.1'; 50 | 51 | /** 52 | * Default POP3 port number. 53 | * 54 | * @var int 55 | */ 56 | const DEFAULT_PORT = 110; 57 | 58 | /** 59 | * Default timeout in seconds. 60 | * 61 | * @var int 62 | */ 63 | const DEFAULT_TIMEOUT = 30; 64 | 65 | /** 66 | * POP3 class debug output mode. 67 | * Debug output level. 68 | * Options: 69 | * @see POP3::DEBUG_OFF: No output 70 | * @see POP3::DEBUG_SERVER: Server messages, connection/server errors 71 | * @see POP3::DEBUG_CLIENT: Client and Server messages, connection/server errors 72 | * 73 | * @var int 74 | */ 75 | public $do_debug = self::DEBUG_OFF; 76 | 77 | /** 78 | * POP3 mail server hostname. 79 | * 80 | * @var string 81 | */ 82 | public $host; 83 | 84 | /** 85 | * POP3 port number. 86 | * 87 | * @var int 88 | */ 89 | public $port; 90 | 91 | /** 92 | * POP3 Timeout Value in seconds. 93 | * 94 | * @var int 95 | */ 96 | public $tval; 97 | 98 | /** 99 | * POP3 username. 100 | * 101 | * @var string 102 | */ 103 | public $username; 104 | 105 | /** 106 | * POP3 password. 107 | * 108 | * @var string 109 | */ 110 | public $password; 111 | 112 | /** 113 | * Resource handle for the POP3 connection socket. 114 | * 115 | * @var resource 116 | */ 117 | protected $pop_conn; 118 | 119 | /** 120 | * Are we connected? 121 | * 122 | * @var bool 123 | */ 124 | protected $connected = false; 125 | 126 | /** 127 | * Error container. 128 | * 129 | * @var array 130 | */ 131 | protected $errors = []; 132 | 133 | /** 134 | * Line break constant. 135 | */ 136 | const LE = "\r\n"; 137 | 138 | /** 139 | * Debug level for no output. 140 | * 141 | * @var int 142 | */ 143 | const DEBUG_OFF = 0; 144 | 145 | /** 146 | * Debug level to show server -> client messages 147 | * also shows clients connection errors or errors from server 148 | * 149 | * @var int 150 | */ 151 | const DEBUG_SERVER = 1; 152 | 153 | /** 154 | * Debug level to show client -> server and server -> client messages. 155 | * 156 | * @var int 157 | */ 158 | const DEBUG_CLIENT = 2; 159 | 160 | /** 161 | * Simple static wrapper for all-in-one POP before SMTP. 162 | * 163 | * @param string $host The hostname to connect to 164 | * @param int|bool $port The port number to connect to 165 | * @param int|bool $timeout The timeout value 166 | * @param string $username 167 | * @param string $password 168 | * @param int $debug_level 169 | * 170 | * @return bool 171 | */ 172 | public static function popBeforeSmtp( 173 | $host, 174 | $port = false, 175 | $timeout = false, 176 | $username = '', 177 | $password = '', 178 | $debug_level = 0 179 | ) { 180 | $pop = new self(); 181 | 182 | return $pop->authorise($host, $port, $timeout, $username, $password, $debug_level); 183 | } 184 | 185 | /** 186 | * Authenticate with a POP3 server. 187 | * A connect, login, disconnect sequence 188 | * appropriate for POP-before SMTP authorisation. 189 | * 190 | * @param string $host The hostname to connect to 191 | * @param int|bool $port The port number to connect to 192 | * @param int|bool $timeout The timeout value 193 | * @param string $username 194 | * @param string $password 195 | * @param int $debug_level 196 | * 197 | * @return bool 198 | */ 199 | public function authorise($host, $port = false, $timeout = false, $username = '', $password = '', $debug_level = 0) 200 | { 201 | $this->host = $host; 202 | //If no port value provided, use default 203 | if (false === $port) { 204 | $this->port = static::DEFAULT_PORT; 205 | } else { 206 | $this->port = (int) $port; 207 | } 208 | //If no timeout value provided, use default 209 | if (false === $timeout) { 210 | $this->tval = static::DEFAULT_TIMEOUT; 211 | } else { 212 | $this->tval = (int) $timeout; 213 | } 214 | $this->do_debug = $debug_level; 215 | $this->username = $username; 216 | $this->password = $password; 217 | //Reset the error log 218 | $this->errors = []; 219 | //Connect 220 | $result = $this->connect($this->host, $this->port, $this->tval); 221 | if ($result) { 222 | $login_result = $this->login($this->username, $this->password); 223 | if ($login_result) { 224 | $this->disconnect(); 225 | 226 | return true; 227 | } 228 | } 229 | //We need to disconnect regardless of whether the login succeeded 230 | $this->disconnect(); 231 | 232 | return false; 233 | } 234 | 235 | /** 236 | * Connect to a POP3 server. 237 | * 238 | * @param string $host 239 | * @param int|bool $port 240 | * @param int $tval 241 | * 242 | * @return bool 243 | */ 244 | public function connect($host, $port = false, $tval = 30) 245 | { 246 | //Are we already connected? 247 | if ($this->connected) { 248 | return true; 249 | } 250 | 251 | //On Windows this will raise a PHP Warning error if the hostname doesn't exist. 252 | //Rather than suppress it with @fsockopen, capture it cleanly instead 253 | set_error_handler([$this, 'catchWarning']); 254 | 255 | if (false === $port) { 256 | $port = static::DEFAULT_PORT; 257 | } 258 | 259 | //Connect to the POP3 server 260 | $errno = 0; 261 | $errstr = ''; 262 | $this->pop_conn = fsockopen( 263 | $host, //POP3 Host 264 | $port, //Port # 265 | $errno, //Error Number 266 | $errstr, //Error Message 267 | $tval 268 | ); //Timeout (seconds) 269 | //Restore the error handler 270 | restore_error_handler(); 271 | 272 | //Did we connect? 273 | if (false === $this->pop_conn) { 274 | //It would appear not... 275 | $this->setError( 276 | "Failed to connect to server $host on port $port. errno: $errno; errstr: $errstr" 277 | ); 278 | 279 | return false; 280 | } 281 | 282 | //Increase the stream time-out 283 | stream_set_timeout($this->pop_conn, $tval, 0); 284 | 285 | //Get the POP3 server response 286 | $pop3_response = $this->getResponse(); 287 | //Check for the +OK 288 | if ($this->checkResponse($pop3_response)) { 289 | //The connection is established and the POP3 server is talking 290 | $this->connected = true; 291 | 292 | return true; 293 | } 294 | 295 | return false; 296 | } 297 | 298 | /** 299 | * Log in to the POP3 server. 300 | * Does not support APOP (RFC 2828, 4949). 301 | * 302 | * @param string $username 303 | * @param string $password 304 | * 305 | * @return bool 306 | */ 307 | public function login($username = '', $password = '') 308 | { 309 | if (!$this->connected) { 310 | $this->setError('Not connected to POP3 server'); 311 | } 312 | if (empty($username)) { 313 | $username = $this->username; 314 | } 315 | if (empty($password)) { 316 | $password = $this->password; 317 | } 318 | 319 | //Send the Username 320 | $this->sendString("USER $username" . static::LE); 321 | $pop3_response = $this->getResponse(); 322 | if ($this->checkResponse($pop3_response)) { 323 | //Send the Password 324 | $this->sendString("PASS $password" . static::LE); 325 | $pop3_response = $this->getResponse(); 326 | if ($this->checkResponse($pop3_response)) { 327 | return true; 328 | } 329 | } 330 | 331 | return false; 332 | } 333 | 334 | /** 335 | * Disconnect from the POP3 server. 336 | */ 337 | public function disconnect() 338 | { 339 | $this->sendString('QUIT'); 340 | //The QUIT command may cause the daemon to exit, which will kill our connection 341 | //So ignore errors here 342 | try { 343 | @fclose($this->pop_conn); 344 | } catch (Exception $e) { 345 | //Do nothing 346 | } 347 | } 348 | 349 | /** 350 | * Get a response from the POP3 server. 351 | * 352 | * @param int $size The maximum number of bytes to retrieve 353 | * 354 | * @return string 355 | */ 356 | protected function getResponse($size = 128) 357 | { 358 | $response = fgets($this->pop_conn, $size); 359 | if ($this->do_debug >= self::DEBUG_SERVER) { 360 | echo 'Server -> Client: ', $response; 361 | } 362 | 363 | return $response; 364 | } 365 | 366 | /** 367 | * Send raw data to the POP3 server. 368 | * 369 | * @param string $string 370 | * 371 | * @return int 372 | */ 373 | protected function sendString($string) 374 | { 375 | if ($this->pop_conn) { 376 | if ($this->do_debug >= self::DEBUG_CLIENT) { //Show client messages when debug >= 2 377 | echo 'Client -> Server: ', $string; 378 | } 379 | 380 | return fwrite($this->pop_conn, $string, strlen($string)); 381 | } 382 | 383 | return 0; 384 | } 385 | 386 | /** 387 | * Checks the POP3 server response. 388 | * Looks for for +OK or -ERR. 389 | * 390 | * @param string $string 391 | * 392 | * @return bool 393 | */ 394 | protected function checkResponse($string) 395 | { 396 | if (strpos($string, '+OK') !== 0) { 397 | $this->setError("Server reported an error: $string"); 398 | 399 | return false; 400 | } 401 | 402 | return true; 403 | } 404 | 405 | /** 406 | * Add an error to the internal error store. 407 | * Also display debug output if it's enabled. 408 | * 409 | * @param string $error 410 | */ 411 | protected function setError($error) 412 | { 413 | $this->errors[] = $error; 414 | if ($this->do_debug >= self::DEBUG_SERVER) { 415 | echo '
';
416 |             foreach ($this->errors as $e) {
417 |                 print_r($e);
418 |             }
419 |             echo '
'; 420 | } 421 | } 422 | 423 | /** 424 | * Get an array of error messages, if any. 425 | * 426 | * @return array 427 | */ 428 | public function getErrors() 429 | { 430 | return $this->errors; 431 | } 432 | 433 | /** 434 | * POP3 connection error handler. 435 | * 436 | * @param int $errno 437 | * @param string $errstr 438 | * @param string $errfile 439 | * @param int $errline 440 | */ 441 | protected function catchWarning($errno, $errstr, $errfile, $errline) 442 | { 443 | $this->setError( 444 | 'Connecting to the POP3 server raised a PHP warning:' . 445 | "errno: $errno errstr: $errstr; errfile: $errfile; errline: $errline" 446 | ); 447 | } 448 | } 449 | -------------------------------------------------------------------------------- /PHPMailer-master/README.md: -------------------------------------------------------------------------------- 1 | ![PHPMailer](https://raw.github.com/PHPMailer/PHPMailer/master/examples/images/phpmailer.png) 2 | 3 | # PHPMailer – A full-featured email creation and transfer class for PHP 4 | 5 | [![Test status](https://github.com/PHPMailer/PHPMailer/workflows/Tests/badge.svg)](https://github.com/PHPMailer/PHPMailer/actions) [![Latest Stable Version](https://poser.pugx.org/phpmailer/phpmailer/v/stable.svg)](https://packagist.org/packages/phpmailer/phpmailer) [![Total Downloads](https://poser.pugx.org/phpmailer/phpmailer/downloads)](https://packagist.org/packages/phpmailer/phpmailer) [![License](https://poser.pugx.org/phpmailer/phpmailer/license.svg)](https://packagist.org/packages/phpmailer/phpmailer) [![API Docs](https://github.com/phpmailer/phpmailer/workflows/Docs/badge.svg)](https://phpmailer.github.io/PHPMailer/) 6 | 7 | ## Features 8 | - Probably the world's most popular code for sending email from PHP! 9 | - Used by many open-source projects: WordPress, Drupal, 1CRM, SugarCRM, Yii, Joomla! and many more 10 | - Integrated SMTP support – send without a local mail server 11 | - Send emails with multiple To, CC, BCC and Reply-to addresses 12 | - Multipart/alternative emails for mail clients that do not read HTML email 13 | - Add attachments, including inline 14 | - Support for UTF-8 content and 8bit, base64, binary, and quoted-printable encodings 15 | - SMTP authentication with LOGIN, PLAIN, CRAM-MD5, and XOAUTH2 mechanisms over SMTPS and SMTP+STARTTLS transports 16 | - Validates email addresses automatically 17 | - Protects against header injection attacks 18 | - Error messages in over 50 languages! 19 | - DKIM and S/MIME signing support 20 | - Compatible with PHP 5.5 and later, including PHP 8.0 21 | - Namespaced to prevent name clashes 22 | - Much more! 23 | 24 | ## Why you might need it 25 | Many PHP developers need to send email from their code. The only PHP function that supports this directly is [`mail()`](https://www.php.net/manual/en/function.mail.php). However, it does not provide any assistance for making use of popular features such as encryption, authentication, HTML messages, and attachments. 26 | 27 | Formatting email correctly is surprisingly difficult. There are myriad overlapping (and conflicting) standards, requiring tight adherence to horribly complicated formatting and encoding rules – the vast majority of code that you'll find online that uses the `mail()` function directly is just plain wrong, if not unsafe! 28 | 29 | The PHP `mail()` function usually sends via a local mail server, typically fronted by a `sendmail` binary on Linux, BSD, and macOS platforms, however, Windows usually doesn't include a local mail server; PHPMailer's integrated SMTP client allows email sending on all platforms without needing a local mail server. Be aware though, that the `mail()` function should be avoided when possible; it's both faster and [safer](https://exploitbox.io/paper/Pwning-PHP-Mail-Function-For-Fun-And-RCE.html) to use SMTP to localhost. 30 | 31 | *Please* don't be tempted to do it yourself – if you don't use PHPMailer, there are many other excellent libraries that 32 | you should look at before rolling your own. Try [SwiftMailer](https://swiftmailer.symfony.com/) 33 | , [Laminas/Mail](https://docs.laminas.dev/laminas-mail/), [ZetaComponents](https://github.com/zetacomponents/Mail) etc. 34 | 35 | ## License 36 | This software is distributed under the [LGPL 2.1](http://www.gnu.org/licenses/lgpl-2.1.html) license, along with the [GPL Cooperation Commitment](https://gplcc.github.io/gplcc/). Please read [LICENSE](https://github.com/PHPMailer/PHPMailer/blob/master/LICENSE) for information on the software availability and distribution. 37 | 38 | ## Installation & loading 39 | PHPMailer is available on [Packagist](https://packagist.org/packages/phpmailer/phpmailer) (using semantic versioning), and installation via [Composer](https://getcomposer.org) is the recommended way to install PHPMailer. Just add this line to your `composer.json` file: 40 | 41 | ```json 42 | "phpmailer/phpmailer": "^6.2" 43 | ``` 44 | 45 | or run 46 | 47 | ```sh 48 | composer require phpmailer/phpmailer 49 | ``` 50 | 51 | Note that the `vendor` folder and the `vendor/autoload.php` script are generated by Composer; they are not part of PHPMailer. 52 | 53 | If you want to use the Gmail XOAUTH2 authentication class, you will also need to add a dependency on the `league/oauth2-client` package in your `composer.json`. 54 | 55 | Alternatively, if you're not using Composer, you 56 | can [download PHPMailer as a zip file](https://github.com/PHPMailer/PHPMailer/archive/master.zip), (note that docs and examples are not included in the zip file), then copy the contents of the PHPMailer folder into one of the `include_path` directories specified in your PHP configuration and load each class file manually: 57 | 58 | ```php 59 | SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output 98 | $mail->isSMTP(); //Send using SMTP 99 | $mail->Host = 'smtp.example.com'; //Set the SMTP server to send through 100 | $mail->SMTPAuth = true; //Enable SMTP authentication 101 | $mail->Username = 'user@example.com'; //SMTP username 102 | $mail->Password = 'secret'; //SMTP password 103 | $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; //Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged 104 | $mail->Port = 587; //TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above 105 | 106 | //Recipients 107 | $mail->setFrom('from@example.com', 'Mailer'); 108 | $mail->addAddress('joe@example.net', 'Joe User'); //Add a recipient 109 | $mail->addAddress('ellen@example.com'); //Name is optional 110 | $mail->addReplyTo('info@example.com', 'Information'); 111 | $mail->addCC('cc@example.com'); 112 | $mail->addBCC('bcc@example.com'); 113 | 114 | //Attachments 115 | $mail->addAttachment('/var/tmp/file.tar.gz'); //Add attachments 116 | $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); //Optional name 117 | 118 | //Content 119 | $mail->isHTML(true); //Set email format to HTML 120 | $mail->Subject = 'Here is the subject'; 121 | $mail->Body = 'This is the HTML message body in bold!'; 122 | $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; 123 | 124 | $mail->send(); 125 | echo 'Message has been sent'; 126 | } catch (Exception $e) { 127 | echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; 128 | } 129 | ``` 130 | 131 | You'll find plenty to play with in the [examples](https://github.com/PHPMailer/PHPMailer/tree/master/examples) folder, which covers many common scenarios including sending through gmail, building contact forms, sending to mailing lists, and more. 132 | 133 | If you are re-using the instance (e.g. when sending to a mailing list), you may need to clear the recipient list to avoid sending duplicate messages. See [the mailing list example](https://github.com/PHPMailer/PHPMailer/blob/master/examples/mailing_list.phps) for further guidance. 134 | 135 | That's it. You should now be ready to use PHPMailer! 136 | 137 | ## Localization 138 | PHPMailer defaults to English, but in the [language](https://github.com/PHPMailer/PHPMailer/tree/master/language/) folder you'll find many translations for PHPMailer error messages that you may encounter. Their filenames contain [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code for the translations, for example `fr` for French. To specify a language, you need to tell PHPMailer which one to use, like this: 139 | 140 | ```php 141 | //To load the French version 142 | $mail->setLanguage('fr', '/optional/path/to/language/directory/'); 143 | ``` 144 | 145 | We welcome corrections and new languages – if you're looking for corrections, run the [PHPMailerLangTest.php](https://github.com/PHPMailer/PHPMailer/tree/master/test/PHPMailerLangTest.php) script in the tests folder and it will show any missing translations. 146 | 147 | ## Documentation 148 | Start reading at the [GitHub wiki](https://github.com/PHPMailer/PHPMailer/wiki). If you're having trouble, head for [the troubleshooting guide](https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting) as it's frequently updated. 149 | 150 | Examples of how to use PHPMailer for common scenarios can be found in the [examples](https://github.com/PHPMailer/PHPMailer/tree/master/examples) folder. If you're looking for a good starting point, we recommend you start with [the Gmail example](https://github.com/PHPMailer/PHPMailer/tree/master/examples/gmail.phps). 151 | 152 | To reduce PHPMailer's deployed code footprint, examples are not included if you load PHPMailer via Composer or via [GitHub's zip file download](https://github.com/PHPMailer/PHPMailer/archive/master.zip), so you'll need to either clone the git repository or use the above links to get to the examples directly. 153 | 154 | Complete generated API documentation is [available online](https://phpmailer.github.io/PHPMailer/). 155 | 156 | You can generate complete API-level documentation by running `phpdoc` in the top-level folder, and documentation will appear in the `docs` folder, though you'll need to have [PHPDocumentor](http://www.phpdoc.org) installed. You may find [the unit tests](https://github.com/PHPMailer/PHPMailer/blob/master/test/PHPMailerTest.php) a good reference for how to do various operations such as encryption. 157 | 158 | If the documentation doesn't cover what you need, search the [many questions on Stack Overflow](http://stackoverflow.com/questions/tagged/phpmailer), and before you ask a question about "SMTP Error: Could not connect to SMTP host.", [read the troubleshooting guide](https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting). 159 | 160 | ## Tests 161 | [PHPMailer tests](https://github.com/PHPMailer/PHPMailer/tree/master/test/) use PHPUnit 9, with [a polyfill](https://github.com/Yoast/PHPUnit-Polyfills) to let 9-style tests run on older PHPUnit and PHP versions. 162 | 163 | [![Test status](https://github.com/PHPMailer/PHPMailer/workflows/Tests/badge.svg)](https://github.com/PHPMailer/PHPMailer/actions) 164 | 165 | If this isn't passing, is there something you can do to help? 166 | 167 | ## Security 168 | Please disclose any vulnerabilities found responsibly – report security issues to the maintainers privately. 169 | 170 | See [SECURITY](https://github.com/PHPMailer/PHPMailer/tree/master/SECURITY.md) and [PHPMailer's security advisories on GitHub](https://github.com/PHPMailer/PHPMailer/security). 171 | 172 | ## Contributing 173 | Please submit bug reports, suggestions and pull requests to the [GitHub issue tracker](https://github.com/PHPMailer/PHPMailer/issues). 174 | 175 | We're particularly interested in fixing edge-cases, expanding test coverage and updating translations. 176 | 177 | If you found a mistake in the docs, or want to add something, go ahead and amend the wiki – anyone can edit it. 178 | 179 | If you have git clones from prior to the move to the PHPMailer GitHub organisation, you'll need to update any remote URLs referencing the old GitHub location with a command like this from within your clone: 180 | 181 | ```sh 182 | git remote set-url upstream https://github.com/PHPMailer/PHPMailer.git 183 | ``` 184 | 185 | Please *don't* use the SourceForge or Google Code projects any more; they are obsolete and no longer maintained. 186 | 187 | ## Sponsorship 188 | Development time and resources for PHPMailer are provided by [Smartmessages.net](https://info.smartmessages.net/), the world's only privacy-first email marketing system. 189 | 190 | Smartmessages.net privacy-first email marketing logo 191 | 192 | Donations are very welcome, whether in beer 🍺, T-shirts 👕, or cold, hard cash 💰. Sponsorship through GitHub is a simple and convenient way to say "thank you" to PHPMailer's maintainers and contributors – just click the "Sponsor" button [on the project page](https://github.com/PHPMailer/PHPMailer). If your company uses PHPMailer, consider taking part in Tidelift's enterprise support programme. 193 | 194 | ## PHPMailer For Enterprise 195 | 196 | Available as part of the Tidelift Subscription. 197 | 198 | The maintainers of PHPMailer and thousands of other packages are working with Tidelift to deliver commercial 199 | support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and 200 | improve code health, while paying the maintainers of the exact packages you 201 | use. [Learn more.](https://tidelift.com/subscription/pkg/packagist-phpmailer-phpmailer?utm_source=packagist-phpmailer-phpmailer&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) 202 | 203 | ## Changelog 204 | See [changelog](changelog.md). 205 | 206 | ## History 207 | - PHPMailer was originally written in 2001 by Brent R. Matzelle as a [SourceForge project](http://sourceforge.net/projects/phpmailer/). 208 | - [Marcus Bointon](https://github.com/Synchro) (`coolbru` on SF) and Andy Prevost (`codeworxtech`) took over the project in 2004. 209 | - Became an Apache incubator project on Google Code in 2010, managed by Jim Jagielski. 210 | - Marcus created [his fork on GitHub](https://github.com/Synchro/PHPMailer) in 2008. 211 | - Jim and Marcus decide to join forces and use GitHub as the canonical and official repo for PHPMailer in 2013. 212 | - PHPMailer moves to [the PHPMailer organisation](https://github.com/PHPMailer) on GitHub in 2013. 213 | 214 | ### What's changed since moving from SourceForge? 215 | - Official successor to the SourceForge and Google Code projects. 216 | - Test suite. 217 | - Continuous integration with Github Actions. 218 | - Composer support. 219 | - Public development. 220 | - Additional languages and language strings. 221 | - CRAM-MD5 authentication support. 222 | - Preserves full repo history of authors, commits and branches from the original SourceForge project. 223 | --------------------------------------------------------------------------------