diff --git a/config.php-dist b/config.php-dist index 6da8eb1f0..55c068441 100644 --- a/config.php-dist +++ b/config.php-dist @@ -149,7 +149,8 @@ define('DIGEST_FROM_NAME', 'Tiny Tiny RSS'); define('DIGEST_FROM_ADDRESS', 'noreply@your.domain.dom'); - // Name and address for sending email digests from. + define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours'); + // Name, address and subject for sending email digests from. define('DIGEST_SMTP_HOST', ''); // SMTP Host to send digests. When blank tt-rss uses @@ -160,7 +161,7 @@ // These two options enable SMTP authentication when sending // digests. Require DIGEST_SMTP_HOST. - define('CONFIG_VERSION', 10); + define('CONFIG_VERSION', 11); // Expected config version. Please update this option in config.php // if necessary (after migrating all new options from this file). diff --git a/functions.php b/functions.php index 2303f54ad..ab03832b0 100644 --- a/functions.php +++ b/functions.php @@ -3231,7 +3231,7 @@ } $mail->IsHTML(true); - $mail->Subject = "[tt-rss] New headlines for last 24 hours"; + $mail->Subject = DIGEST_SUBJECT; $mail->Body = $digest; $mail->AltBody = $digest_text; @@ -3323,8 +3323,8 @@ $tpl->setVariable('ARTICLE_TITLE', $line["title"]); $tpl->setVariable('ARTICLE_LINK', $line["link"]); $tpl->setVariable('ARTICLE_UPDATED', $updated); -// $tpl->setVariable('ARTICLE_EXCERPT', -// truncate_string(strip_tags($line["excerpt"]), 100)); + $tpl->setVariable('ARTICLE_EXCERPT', + truncate_string(strip_tags($line["excerpt"]), 100)); $tpl->addBlock('article'); diff --git a/sanity_check.php b/sanity_check.php index 21fc03806..b9290b50c 100644 --- a/sanity_check.php +++ b/sanity_check.php @@ -1,7 +1,7 @@ -
${ARTICLE_EXCERPT}
To unsubscribe, visit your configuration options or contact instance owner.
+