summaryrefslogtreecommitdiff
path: root/init.php
diff options
context:
space:
mode:
Diffstat (limited to 'init.php')
-rw-r--r--init.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/init.php b/init.php
index 883e19f..e00a5a5 100644
--- a/init.php
+++ b/init.php
@@ -4,9 +4,10 @@ class mailer_smtp extends Plugin {
function about() {
return array(1.0,
- "Supports sending mail via SMTP using PHPMailer. Read README.txt before enabling.",
+ "Sends mail via SMTP using PHPMailer. Read README.txt before enabling.",
"fox",
- 1);
+ 1,
+ "https://git.tt-rss.org/fox/ttrss-mailer-smtp");
}
function init($host) {
@@ -57,6 +58,7 @@ class mailer_smtp extends Plugin {
$phpmailer->setFrom($from_address, $from_name);
$phpmailer->addAddress($params["to_address"], $params["to_name"]);
$phpmailer->Subject = $params["subject"];
+ $phpmailer->CharSet = "UTF-8";
if ($params["message_html"]) {
$phpmailer->msgHTML($params["message_html"]);