Try our conversational search powered by Generative AI!

contact with Email.

Vote:
 

Hi All,

I have a requirement called if users want to send messages to our mailid. i have form with some data if users entered message nd they click on send button i want that message go to mailid. how to do this can anybody help me?

Thanks,

Uday

#180048
Jun 29, 2017 8:40
Vote:
 

Hi,

Is the form created by XForms, Episerver Forms or is it a normal WebForms/MVC view with a form in it?

#180077
Jun 29, 2017 12:29
Vote:
 

Hello Pawan,

If the forms are created using Episerver.Forms, then you can send email to user after form submission through episerver forms email template which is availble in form settings tab.

You have to configure email server, for confirmation mail to work,in web.config file 

<system.net>
<mailSettings>
<smtp deliveryMethod="network" deliveryFormat="SevenBit" from="validemail@gmail.com">
<network
host="smtp.gmail.com"
port="587"
defaultCredentials="false"
userName="username"
password="password"
enableSsl="true"
/>
</smtp>
</mailSettings>
</system.net>



#180086
Edited, Jun 29, 2017 13:55
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.