Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Is there documentation on how to set up umbraco forms with an smtp service like sendgrid or mailtrap? I cannot find the settings in the back-office.
Hi,
You can use base .net mail settings. You should define server and credentials in web.config file. SmtpClient class will use these given settings right away.
If you would like to customize stuff, you should define your own workflows. You can find documentation on how here https://our.umbraco.com/documentation/Add-ons/umbracoforms/developer/extending/adding-a-workflowtype
Regards,
Mehmet
You just need to create a sendgrid account, create a apikey and add it to the MailSettings section in the web.config:
<smtp from="[email protected]"> <network host="smtp.sendgrid.net" port="587" userName="apikey" password="apikeyYouCreatedinSendGrid" /> </smtp>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Umbraco Forms Setting up smtp
Is there documentation on how to set up umbraco forms with an smtp service like sendgrid or mailtrap? I cannot find the settings in the back-office.
Hi,
You can use base .net mail settings. You should define server and credentials in web.config file. SmtpClient class will use these given settings right away.
If you would like to customize stuff, you should define your own workflows. You can find documentation on how here https://our.umbraco.com/documentation/Add-ons/umbracoforms/developer/extending/adding-a-workflowtype
Regards,
Mehmet
You just need to create a sendgrid account, create a apikey and add it to the MailSettings section in the web.config:
is working on a reply...