Last active
January 29, 2020 15:22
-
-
Save steviemcg/d65ce8909981fa4452b5d678b029d25a to your computer and use it in GitHub Desktop.
Configures Sitecore EXM to use EU Datacenters, instructions from https://kb.sitecore.net/articles/947205
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration xmlns:x="http://www.sitecore.net/xmlconfig/" 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="EmailCloud"> | |
| <exm> | |
| <eds> | |
| <smtpSettings> | |
| <server>sitecore-eu.smtp.e.sparkpost.com</server> | |
| <userName>sitecore-eu</userName> | |
| </smtpSettings> | |
| <edsService> | |
| <param desc="apiUrl">https://sparkpost-eu.cloud.sitecore.net</param> | |
| </edsService> | |
| <configurationStore> | |
| <apiUrl>https://sitecore-eu.api.e.sparkpost.com/</apiUrl> | |
| </configurationStore> | |
| </eds> | |
| </exm> | |
| </sitecore> | |
| </configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment