All Downloads are FREE. Search and download functionalities are using the official Maven repository.

chapters.appenders.mail.mail1.xml Maven / Gradle / Ivy

There is a newer version: 1.3.0-alpha4
Show newest version
<configuration>
	  
  <appender name="EMAIL" class="ch.qos.logback.classic.net.SMTPAppender">
    <smtpHost>ADDRESS-OF-YOUR-SMTP-HOST</smtpHost>
    <to>EMAIL-DESTINATION</to>
    <to>ANOTHER_EMAIL_DESTINATION</to> <!-- additional destinations are possible -->
    <from>SENDER-EMAIL</from>
    <subject>%logger{20} - %m</subject>
    <layout class="ch.qos.logback.classic.PatternLayout">
      <pattern>%date %-5level %logger - %message%n</pattern>
    </layout>	    
  </appender>

  <root level="debug">
    <appender-ref ref="EMAIL" />
  </root>  
</configuration>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy