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!
AI OnAI Off
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!
Where do I configure this PickupDirectory ? Sorry, I'm new to EPiServer development.
No worries. It's also in your web.config, I believe something like below. It will create files from your emails and put them in the directory instead of sending them.
<system.net>
<mailSettings>
<smtpdeliveryMethod="SpecifiedPickupDirectory"from="no-reply@example.com">
<specifiedPickupDirectorypickupDirectoryLocation="C:\path\to\pickupdirectory" />
</smtp>
</mailSettings>
</system.net>
Is there a particular format to provide smtp server details on web.config. I need to set my local smtp to my epi sebsite. I'm always getting an error while sending an email from XForm.
I have provided my smtp settings in web.config as follows:
<system.net>
<mailSettings>
<smtp from="EMAIL_Address">
<network host="serverName" port="25" userName="" password=""/>
</smtp>
</mailSettings>
</system.net>