Skip to content

Instantly share code, notes, and snippets.

@netojoa
Created October 31, 2019 13:32
Show Gist options
  • Save netojoa/51fb1e9746eab47d9fd25f8be3b98c28 to your computer and use it in GitHub Desktop.
Save netojoa/51fb1e9746eab47d9fd25f8be3b98c28 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" ?>
<!--
Purpose: This include file configures Email delivery service API.
-->
<configuration xmlns:role="http://www.sitecore.net/xmlconfig/role/" xmlns:eds="http://www.sitecore.net/xmlconfig/eds/" xmlns:exmEnabled="http://www.sitecore.net/xmlconfig/exmEnabled/">
<sitecore exmEnabled:require="yes" role:require="Standalone or ContentManagement or DedicatedDispatch" eds:require="CustomSmtp">
<exm>
<eds>
<smtpSettings type="Sitecore.EDS.Core.Net.Smtp.SmtpSettings, Sitecore.EDS.Core" singleInstance="true">
<server>localhost</server>
<port>25</port>
<userName></userName>
<password></password>
<authenticationMethod>None</authenticationMethod>
<startTls>false</startTls>
<proxySettings ref="exm/eds/proxySettings" />
</smtpSettings>
</eds>
</exm>
</sitecore>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment