Creating And Publishing Notifications
How to create and publish your own custom notifications
Creating And Publishing Custom Notifications
using Umbraco.Cms.Core.Notifications;
namespace Umbraco.Docs.Samples.Web.RecurringBackgroundJobs;
public class CleanYourRoomStartedNotification : INotification
{
}using Umbraco.Cms.Core.Notifications;
namespace Umbraco.Docs.Samples.Web.RecurringBackgroundJobs;
public class RoomCleanedNotification : INotification
{
public int ItemsDeleted { get; }
public RoomCleanedNotification(int itemsDeleted)
{
ItemsDeleted = itemsDeleted;
}
}Sending notifications
Example
Last updated
Was this helpful?