From 44a30b82efcffecffcee03d19bde7749138ddcbc Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 25 Feb 2019 19:03:08 +0300 Subject: add more info link --- init.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'init.php') diff --git a/init.php b/init.php index a347de9..710b59f 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) { @@ -56,6 +57,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"]); -- cgit v1.2.3