Copied to clipboard

Flag this post as spam?

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


  • Kaj 41 posts 73 karma points
    Feb 23, 2010 @ 13:41
    Kaj
    0

    Can´t get the email notification to work?

    In the workflow I choose "send me an email" on submit. I fil in my email-adres, but I donĀ“t get any email notification sent to me??

    Is ther something I miss??

     

    Regards,

    Kaj

  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Feb 23, 2010 @ 13:55
    Dirk De Grave
    0

    Hi Kaj

    Do you have your email settings configured in web.config as per this documentation?

     

    Cheers,

    /Dirk

  • Laurence Gillian 600 posts 1219 karma points
    Feb 23, 2010 @ 14:03
    Laurence Gillian
    0

    Also make sure your firewall on the server is allowing outgoing mail connections. /L

  • Kaj 41 posts 73 karma points
    Feb 23, 2010 @ 14:25
    Kaj
    0

    Ok, so can I just put in that exampel-code in my web.config-file??

  • Kaj 41 posts 73 karma points
    Feb 23, 2010 @ 14:35
    Kaj
    0

    I allready have it in my web.congif-file??

    Is ther something else I miss??

  • Kim Andersen 1447 posts 2196 karma points MVP
    Feb 23, 2010 @ 14:39
    Kim Andersen
    100

    Hi Kaj

    In your web.config you need to edit the mail settings so Umbraco knows where the mail should be sent from, and through which smtp server. That is what Dirk tried to explain I think.

    In the web.config find this:

      <system.net>
        <mailSettings>
          <smtp>
            <network host="127.0.0.1" userName="username" password="password" />
          </smtp>
        </mailSettings>
      </system.net>

    You need to configure this line right. I don't know which smtp-server you can use at your place, but I know that if you have a gmail, you could use this:

      <system.net>
        <mailSettings>
          <smtp>
            <network host="smtp.gmail.com" userName="[email protected]" password="yourGmailPassword" />
          </smtp>
        </mailSettings>
      </system.net>

    I hope this works. It's been a while since I tried it, but give it a shot.

    /Kim A

  • Kaj 41 posts 73 karma points
    Feb 23, 2010 @ 15:50
    Kaj
    0

    Thankyou verry mutch Kim! I love Denmark, its nice people! :-)

     

    /Kaj

  • Kim Andersen 1447 posts 2196 karma points MVP
    Feb 23, 2010 @ 20:25
    Kim Andersen
    0

    Hehe, you are welcome Kaj :)

    /Kim A

Please Sign in or register to post replies

Write your reply to:

Draft