November Happy Hour will be moved to Thursday December 5th.
I have implemented the Xforms using episerver MVC 4. It is set to save to database and send email for the submit button for the XForm.
Its saving in the database but its not sending the mail. I have even setup the SMTP as well.
<mailSettings> <smtp deliveryMethod="Network" from="domain@site.se"> <network host="domain@site.se"/> </smtp> </mailSettings> </system.net>
Am I missing anything? I guess I dont see any setting in Global.asax.
I solved the above problem..Issue was in SMTP settings. Thanks
I have implemented the Xforms using episerver MVC 4. It is set to save to database and send email for the submit button for the XForm.
Its saving in the database but its not sending the mail. I have even setup the SMTP as well.
<mailSettings>
<smtp deliveryMethod="Network" from="domain@site.se">
<network host="domain@site.se"/>
</smtp>
</mailSettings>
</system.net>
Am I missing anything? I guess I dont see any setting in Global.asax.