Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • mikkel 143 posts 365 karma points
    Jun 11, 2020 @ 14:50
    mikkel
    0

    not getting emails from umbraco forms

    Hi every one. I bought umbraco forms, I found with a friend the right setting for smtp, I receive nice messages from umbraco forms in the back office, but I receive the messages in my mail that there is a message for me on my website. I've tried these ports for simply.com smtp 25, 8080, 2525 and 587 but no luck at all. i'm on the bare floor is there anything i miss or miss ????????

    my smtp code:

       <smtp deliveryMethod="Network" from="[email protected]">
                    <network host="smtp.simply.com" port="587" userName="[email protected]" password="MYPASSWORD" />
                </smtp>
    

    My jquery links and code in master template

     <script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.0.0.min.js"></script>
        <script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.16.0/jquery.validate.min.js"></script>
        <script src="https://ajax.aspnetcdn.com/ajax/mvc/5.2.3/jquery.validate.unobtrusive.min.js"></script>
    @if(TempData["UmbracoForms"] != null)
    {
            foreach (var form in (List<Guid>)TempData["UmbracoForms"])
            {
                Html.RenderAction("RenderFormScripts", "UmbracoForms", new { formid = form, theme = "yourTheme" });
            }
        }
    
  • Amir Khan 1282 posts 2739 karma points
    Jun 19, 2020 @ 20:43
    Amir Khan
    0

    You likely want to add enableSsl="true" to your network node if you're using port 587.

  • mikkel 143 posts 365 karma points
    Jun 20, 2020 @ 07:49
    mikkel
    0

    iit work fine now i had to write websmtp insteadt og smpt :D

  • Dhanesh Kumar MJ 158 posts 511 karma points c-trib
    Jun 20, 2020 @ 10:42
    Dhanesh Kumar MJ
    0

    Hey mikkel,

    Great 👍

Please Sign in or register to post replies

Write your reply to:

Draft