Created
October 6, 2021 20:51
-
-
Save dylanyoung-dev/23ccaae8943e5a7e9437f17c5f7d1ede to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:role="http://www.sitecore.net/xmlconfig/role/" xmlns:eds="http://www.sitecore.net/xmlconfig/eds/"> | |
<sitecore role:require="Standalone or ContentManagement or DedicatedDispatch" eds:require="CustomSmtp"> | |
<exm> | |
<eds> | |
<smtpSettings patch:instead="*[@type='Sitecore.EDS.Core.Net.Smtp.SmtpSettings, Sitecore.EDS.Core']" type="Sitecore.EDS.Core.Net.Smtp.SmtpSettings, Sitecore.EDS.Core" singleInstance="true"> | |
<server>smtp.sendgrid.net</server> | |
<port>587</port> | |
<userName>apikey</userName> | |
<password></password> | |
<authenticationMethod>CramMd5</authenticationMethod> | |
<startTls>true</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