summaryrefslogtreecommitdiff
path: root/init.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-02-25 19:03:08 +0300
committerAndrew Dolgov <[email protected]>2019-02-25 19:03:08 +0300
commit44a30b82efcffecffcee03d19bde7749138ddcbc (patch)
tree07580d3c9e1a63e551f545d0aec772edc2f0153f /init.php
parent261dea435f09c43bbb5a1f265e1df98ce77c0228 (diff)
add more info link
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 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"]);