London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
This section describes how to configure the SMTP e-mail notification features in EPiServer Commerce. Refer also to Notifications for related information.
Locate the appSettings section in the web.config file or in the appSettings.config file, which should be in the root of the website (sample site), and do the following:
Locate the web.config file for your website, and locate the node /Configuration/FrameWorkProviders/templateService. Here you can add your own custom template provider to provide a different format to your e-mails and configure this provider to be the default provider.
Locate the web.config file for your website, and locate the node /Configuration/System.net/. Here you can add a node for mailSettings, as well as an SMTP node. Configure the attributes of these nodes according to your SMTP server settings. For testing purposes it is possible to remove the user name and password attributes.
Example: SMTP account configuration
<system.net>
<mailSettings>
<smtp from="your email address" deliveryMethod="Network">
<network defaultCredentials="false"
host="url to your smtp server"
port="smtp servers port"
username=your username
password=your passwordsmtp>
</mailSettings>
</system.net>
Last updated: Oct 21, 2014