As stated in the title, I've had some issues finding an appender that states that it support the TLS encryption standard.
I've been trying to use the SmtpAppender but can't get it to work and suspect it has to do with the smtp server requiring TLS encryption and SmtpAppender might not supporting this.
The configuration used:
<appender name="SmtpAppender" type="log4net.Appender.SmtpAppender">
<to value="my email" />
<from value="The senders email" />
<Username value="JohnDoe"></Username>
<password value="NoWay" ></password>
<authentication value="Basic"></authentication>
<subject value="Test message" />
<smtpHost value="pod51011.outlook.com" />
<port value="587" />
<bufferSize value="512" />
<lossy value="true" />
<EnableSsl value="true"/>
<evaluator type="log4net.Core.LevelEvaluator">
<threshold value="INFO"/>
</evaluator>
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%newline%date [%thread] %-5level %logger [%property{NDC}] - %message%newline%newline%newline" />
</layout>
</appender>