mcross1882 / LogAnalyzer

Log analyzer and summary builder written in Scala built for JVM projects
Apache License 2.0
0 stars 1 forks source link

Implemented SMTP emailing #14

Closed mcross1882 closed 10 years ago

mcross1882 commented 10 years ago

Adds the ability to use Email exports in XML definitions.

Sample EmailExport definition in services/

<exports>
    <email name="gmail" to="recipient@gmail.com" from="sender@gmail.com" subject="Demo Report" />
</exports>

Sample Email settings configuration in conf/email/

<emails>
    <config
        name="gmail"
        host="smtp.gmail.com"
        user="someone@gmail.com"
        pass="password123"
        port="465" />
</emails>