Configure SMTP for outbound emails
To configure outbound email, follow these steps:
Edit the /opt/bitnami/apps/tinytinyrss/htdocs/config.php file adding the SMTP configuration:
define('SMTP_FROM_NAME', 'Tiny Tiny RSS');
define('SMTP_FROM_ADDRESS', 'noreply@your.domain.dom');
define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours');
define('SMTP_SERVER', '');
define('SMTP_LOGIN', '');
define('SMTP_PASSWORD', '');
define('SMTP_SECURE', '');
To configure the application to use other third-party SMTP services for outgoing email, such as SendGrid, refer to the FAQ.