Webiant Logo Webiant Logo
  1. No results found.

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

MessageTemplateSystemNames.cs

namespace Nop.Core.Domain.Messages;

/// 
/// Represents message template system names
/// 
public static partial class MessageTemplateSystemNames
{
    #region Customer

    /// 
    /// Represents system name of notification about new registration
    /// 
    public const string CUSTOMER_REGISTERED_STORE_OWNER_NOTIFICATION = "NewCustomer.Notification";

    /// 
    /// Represents system name of customer welcome message
    /// 
    public const string CUSTOMER_WELCOME_MESSAGE = "Customer.WelcomeMessage";

    /// 
    /// Represents system name of email validation message
    /// 
    public const string CUSTOMER_EMAIL_VALIDATION_MESSAGE = "Customer.EmailValidationMessage";

    /// 
    /// Represents system name of email revalidation message
    /// 
    public const string CUSTOMER_EMAIL_REVALIDATION_MESSAGE = "Customer.EmailRevalidationMessage";

    /// 
    /// Represents system name of password recovery message
    /// 
    public const string CUSTOMER_PASSWORD_RECOVERY_MESSAGE = "Customer.PasswordRecovery";

    /// 
    /// Represents system name of delete customer request notification
    /// 
    public const string DELETE_CUSTOMER_REQUEST_STORE_OWNER_NOTIFICATION = "Customer.Gdpr.DeleteRequest";

    #endregion

    #region Order

    /// 
    /// Represents system name of notification vendor about placed order
    /// 
    public const string ORDER_PLACED_VENDOR_NOTIFICATION = "OrderPlaced.VendorNotification";

    /// 
    /// Represents system name of notification store owner about placed order
    /// 
    public const string ORDER_PLACED_STORE_OWNER_NOTIFICATION = "OrderPlaced.StoreOwnerNotification";

    /// 
    /// Represents system name of notification affiliate about placed order
    /// 
    public const string ORDER_PLACED_AFFILIATE_NOTIFICATION = "OrderPlaced.AffiliateNotification";

    /// 
    /// Represents system name of notification store owner about paid order
    /// 
    public const string ORDER_PAID_STORE_OWNER_NOTIFICATION = "OrderPaid.StoreOwnerNotification";

    /// 
    /// Represents system name of notification customer about paid order
    /// 
    public const string ORDER_PAID_CUSTOMER_NOTIFICATION = "OrderPaid.CustomerNotification";

    /// 
    /// Represents system name of notification vendor about paid order
    /// 
    public const string ORDER_PAID_VENDOR_NOTIFICATION = "OrderPaid.VendorNotification";

    /// 
    /// Represents system name of notification affiliate about paid order
    /// 
    public const string ORDER_PAID_AFFILIATE_NOTIFICATION = "OrderPaid.AffiliateNotification";

    /// 
    /// Represents system name of notification customer about placed order
    /// 
    public const string ORDER_PLACED_CUSTOMER_NOTIFICATION = "OrderPlaced.CustomerNotification";

    /// 
    /// Represents system name of notification customer about sent shipment
    /// 
    public const string SHIPMENT_SENT_CUSTOMER_NOTIFICATION = "ShipmentSent.CustomerNotification";

    /// 
    /// Represents system name of notification customer about ready for pickup shipment
    /// 
    public const string SHIPMENT_READY_FOR_PICKUP_CUSTOMER_NOTIFICATION = "ShipmentReadyForPickup.CustomerNotification";

    /// 
    /// Represents system name of notification customer about delivered shipment
    /// 
    public const string SHIPMENT_DELIVERED_CUSTOMER_NOTIFICATION = "ShipmentDelivered.CustomerNotification";

    /// 
    /// Represents system name of notification customer about processing order
    /// 
    public const string ORDER_PROCESSING_CUSTOMER_NOTIFICATION = "OrderProcessing.CustomerNotification";

    /// 
    /// Represents system name of notification customer about completed order
    /// 
    public const string ORDER_COMPLETED_CUSTOMER_NOTIFICATION = "OrderCompleted.CustomerNotification";

    /// 
    /// Represents system name of notification customer about cancelled order
    /// 
    public const string ORDER_CANCELLED_CUSTOMER_NOTIFICATION = "OrderCancelled.CustomerNotification";

    /// 
    /// Represents system name of notification store owner about refunded order
    /// 
    public const string ORDER_REFUNDED_STORE_OWNER_NOTIFICATION = "OrderRefunded.StoreOwnerNotification";

    /// 
    /// Represents system name of notification customer about refunded order
    /// 
    public const string ORDER_REFUNDED_CUSTOMER_NOTIFICATION = "OrderRefunded.CustomerNotification";

    /// 
    /// Represents system name of notification customer about new order note
    /// 
    public const string NEW_ORDER_NOTE_ADDED_CUSTOMER_NOTIFICATION = "Customer.NewOrderNote";

    /// 
    /// Represents system name of notification store owner about cancelled recurring order
    /// 
    public const string RECURRING_PAYMENT_CANCELLED_STORE_OWNER_NOTIFICATION = "RecurringPaymentCancelled.StoreOwnerNotification";

    /// 
    /// Represents system name of notification customer about cancelled recurring order
    /// 
    public const string RECURRING_PAYMENT_CANCELLED_CUSTOMER_NOTIFICATION = "RecurringPaymentCancelled.CustomerNotification";

    /// 
    /// Represents system name of notification customer about failed payment for the recurring payments
    /// 
    public const string RECURRING_PAYMENT_FAILED_CUSTOMER_NOTIFICATION = "RecurringPaymentFailed.CustomerNotification";

    #endregion

    #region Newsletter

    /// 
    /// Represents system name of subscription activation message
    /// 
    public const string NEWSLETTER_SUBSCRIPTION_ACTIVATION_MESSAGE = "NewsLetterSubscription.ActivationMessage";

    /// 
    /// Represents system name of subscription deactivation message
    /// 
    public const string NEWSLETTER_SUBSCRIPTION_DEACTIVATION_MESSAGE = "NewsLetterSubscription.DeactivationMessage";

    #endregion

    #region To friend

    /// 
    /// Represents system name of 'Email a friend' message
    /// 
    public const string EMAIL_A_FRIEND_MESSAGE = "Service.EmailAFriend";

    /// 
    /// Represents system name of 'Email a friend' message with wishlist
    /// 
    public const string WISHLIST_TO_FRIEND_MESSAGE = "Wishlist.EmailAFriend";

    #endregion

    #region Return requests

    /// 
    /// Represents system name of notification store owner about new return request
    /// 
    public const string NEW_RETURN_REQUEST_STORE_OWNER_NOTIFICATION = "NewReturnRequest.StoreOwnerNotification";

    /// 
    /// Represents system name of notification customer about new return request
    /// 
    public const string NEW_RETURN_REQUEST_CUSTOMER_NOTIFICATION = "NewReturnRequest.CustomerNotification";

    /// 
    /// Represents system name of notification customer about changing return request status
    /// 
    public const string RETURN_REQUEST_STATUS_CHANGED_CUSTOMER_NOTIFICATION = "ReturnRequestStatusChanged.CustomerNotification";

    #endregion

    #region Forum

    /// 
    /// Represents system name of notification about new forum topic
    /// 
    public const string NEW_FORUM_TOPIC_MESSAGE = "Forums.NewForumTopic";

    /// 
    /// Represents system name of notification about new forum post
    /// 
    public const string NEW_FORUM_POST_MESSAGE = "Forums.NewForumPost";

    /// 
    /// Represents system name of notification about new private message
    /// 
    public const string PRIVATE_MESSAGE_NOTIFICATION = "Customer.NewPM";

    #endregion

    #region Misc

    /// 
    /// Represents system name of notification store owner about applying new vendor account
    /// 
    public const string NEW_VENDOR_ACCOUNT_APPLY_STORE_OWNER_NOTIFICATION = "VendorAccountApply.StoreOwnerNotification";

    /// 
    /// Represents system name of notification vendor about changing information
    /// 
    public const string VENDOR_INFORMATION_CHANGE_STORE_OWNER_NOTIFICATION = "VendorInformationChange.StoreOwnerNotification";

    /// 
    /// Represents system name of notification about gift card
    /// 
    public const string GIFT_CARD_NOTIFICATION = "GiftCard.Notification";

    /// 
    /// Represents system name of notification store owner about new product review
    /// 
    public const string PRODUCT_REVIEW_STORE_OWNER_NOTIFICATION = "Product.ProductReview";

    /// 
    /// Represents system name of notification customer about product review reply
    /// 
    public const string PRODUCT_REVIEW_REPLY_CUSTOMER_NOTIFICATION = "ProductReview.Reply.CustomerNotification";

    /// 
    /// Represents system name of notification store owner about below quantity of product
    /// 
    public const string QUANTITY_BELOW_STORE_OWNER_NOTIFICATION = "QuantityBelow.StoreOwnerNotification";

    /// 
    /// Represents system name of notification store owner about below quantity of product attribute combination
    /// 
    public const string QUANTITY_BELOW_ATTRIBUTE_COMBINATION_STORE_OWNER_NOTIFICATION = "QuantityBelow.AttributeCombination.StoreOwnerNotification";

    /// 
    /// Represents system name of notification store owner about submitting new VAT
    /// 
    public const string NEW_VAT_SUBMITTED_STORE_OWNER_NOTIFICATION = "NewVATSubmitted.StoreOwnerNotification";

    /// 
    /// Represents system name of notification store owner about new blog comment
    /// 
    public const string BLOG_COMMENT_STORE_OWNER_NOTIFICATION = "Blog.BlogComment";

    /// 
    /// Represents system name of notification store owner about new news comment
    /// 
    public const string NEWS_COMMENT_STORE_OWNER_NOTIFICATION = "News.NewsComment";

    /// 
    /// Represents system name of notification customer about product receipt
    /// 
    public const string BACK_IN_STOCK_NOTIFICATION = "Customer.BackInStock";

    /// 
    /// Represents system name of 'Contact us' message
    /// 
    public const string CONTACT_US_MESSAGE = "Service.ContactUs";

    /// 
    /// Represents system name of 'Contact vendor' message
    /// 
    public const string CONTACT_VENDOR_MESSAGE = "Service.ContactVendor";

    #endregion
}