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;

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

    /// 
    /// 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
    /// 
    public bool UseDefaultEmailAccountForSendStoreOwnerEmails { get; set; }
}