summaryrefslogtreecommitdiff
path: root/classes/ttrssmailer.php
AgeCommit message (Collapse)Author
2017-04-26remove some redundant php closing tagsAndrew Dolgov
2017-01-04ttrssmailer: include phpmailer's smtp classAndrew Dolgov
2013-05-26Changes to support a new version of the phpmailer. Adds a new setting ↵justauser
SMTP_SECURE, which cna have a value of tls, ssl or be empty. This is used for secure SMTP servers. Also added the ability to have multiple email addresses in the to field. Addresses are separated by semicolons (;)
2013-05-07Fixing bugs found by static analysisRasmus Lerdorf
2013-04-16ttrssMailer: actually use OOP properlyAndrew Dolgov
2013-04-16ttrssMailer: fix typoAndrew Dolgov
2013-04-16unify SMTP_HOST and SMTP_PORT as SMTP_SERVERAndrew Dolgov
2013-03-23update reset user password to use ttrssMailerAndrew Dolgov
2013-03-22Additions:derekmurawsky
classes/trssmailer.php - Created class TTRSS mailer which extends phpmailer and sets the default mail settings upon instantiation. Class includes quickmail function that allows for a quick email send with no extra configurion necessary. Changes: config.php-dist - Added the smtp port option include/digest.php - Converted it to use the new ttrrssmailer class include/sanity_config.php - Added the smtp port option to the sanity check plugins/mail/init.php - Modified to use ttrssmailer class. This particular configuration shows a hybrid use case. register.php = Modified to use ttrssmailer class. All code was tested and functioned on my local machine.