Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

MessagesSettings.cs

using Nop.Core.Configuration;

namespace Nop.Core.Domain.Messages;

/// <summary>
/// Messages settings
/// </summary>
public partial class MessagesSettings : ISettings
{
    /// <summary>
    /// A value indicating whether popup notifications set as default 
    /// </summary>
    public bool UsePopupNotifications { get; set; }

    /// <summary>
    /// A value indicating whether to use the default email account to send emails for store owner
    ///
    /// If set to false the message template email address will be use
    /// </summary>
    public bool UseDefaultEmailAccountForSendStoreOwnerEmails { get; set; }
}