Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/itchief/feedbackForm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoritchief <alex.malcev1980@gmail.com>2016-07-21 15:01:34 +0300
committerGitHub <noreply@github.com>2016-07-21 15:01:34 +0300
commit86d50dd62cb2ee3be1af0cf84d59cd0d083c5408 (patch)
tree939f4f95fd05e925394410bd04649cbe6a435d1d
parent16ec314cd8c8045e65b2c72e461c2366ab9d968d (diff)
Update verify.php
Изменена кодировка письма на utf-8
-rw-r--r--feedback/verify.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/feedback/verify.php b/feedback/verify.php
index 63da92b..9ecdce5 100644
--- a/feedback/verify.php
+++ b/feedback/verify.php
@@ -176,6 +176,7 @@
// создаём экземпляр класса PHPMailer
$mail = new PHPMailer;
+ $mail->CharSet = 'UTF-8';
$mail->From = 'email@mysite.ru';
$mail->FromName = 'Имя сайта';
$mail->Subject = 'Сообщение с формы обратной связи';
@@ -200,4 +201,4 @@
echo json_encode($data);
-?> \ No newline at end of file
+?>