Copied to clipboard

Flag this post as spam?

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


  • Marc-André 63 posts 279 karma points
    Aug 30, 2019 @ 14:15
    Marc-André
    0

    Hi all!

    I want to use the nofitications in Umbraco but it dosen't appear in the context menu. How can I activate them? Thank you!

    enter image description here

  • Marc Goodson 2133 posts 14293 karma points MVP 8x c-trib
    Aug 30, 2019 @ 20:03
    Marc Goodson
    100

    Hi Marc-Andre

    In Umbraco V8 the 'Notifications' option only appears on the action menu for a particular item in the content tree if SMTP is configured correctly in the application's web.config.

    I guess that sort of makes sense as the notifications wouldn't be able to be sent without the SMTP config.. but hard to know that's the case!

    If working locally you could add...

      <smtp deliveryMethod="SpecifiedPickupDirectory">
        <specifiedPickupDirectory pickupDirectoryLocation="C:\TEMP" />
      </smtp>
    
  • Marc-André 63 posts 279 karma points
    Sep 03, 2019 @ 17:08
    Marc-André
    0

    Hi Marc!

    I got my STMP configured and working and I don't see the notification options. :/

  • Marc-André 63 posts 279 karma points
    Sep 03, 2019 @ 17:10
    Marc-André
    0

    Oh wow. When I insert your lines it works.

  • Adam Nelson 27 posts 186 karma points c-trib
    Jan 19, 2021 @ 20:51
    Adam Nelson
    1

    For anyone still hitting this problem, note that Umbraco does not consider your SMTP settings to be 'configured' if you simply uncomment the default settings. That is, if it finds from="[email protected]" in the mail settings, it won't offer the notification feature.

    <mailSettings>
        <smtp from="[email protected]">
            <network host="127.0.0.1" userName="username" password="password" />
        </smtp>
    </mailSettings>
    
Please Sign in or register to post replies

Write your reply to:

Draft