-
Notifications
You must be signed in to change notification settings - Fork 526
Expand file tree
/
Copy pathMessageTemplateNames.cs
More file actions
46 lines (38 loc) · 3.08 KB
/
MessageTemplateNames.cs
File metadata and controls
46 lines (38 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
namespace Grand.Business.Messages
{
public class MessageTemplateNames
{
public const string CustomerRegistered = "NewCustomer.Notification";
public const string CustomerWelcome = "Customer.WelcomeMessage";
public const string CustomerEmailValidation = "Customer.EmailValidationMessage";
public const string CustomerPasswordRecovery = "Customer.PasswordRecovery";
public const string CustomerEmailLoginCode = "Customer.EmailLoginCode";
public const string CustomerNewCustomerNote = "Customer.NewCustomerNote";
public const string CustomerEmailTokenValidationMessage = "Customer.EmailTokenValidationMessage";
public const string SendOrderPlacedStoreOwnerMessage = "OrderPlaced.StoreOwnerNotification";
public const string SendOrderPaidStoreOwnerMessage = "OrderPaid.StoreOwnerNotification";
public const string SendOrderCancelledStoreOwnerMessage = "OrderCancelled.StoreOwnerNotification";
public const string SendOrderRefundedStoreOwnerMessage = "OrderRefunded.StoreOwnerNotification";
public const string SendOrderPlacedCustomerMessage = "OrderPlaced.CustomerNotification";
public const string SendOrderPaidCustomerMessage = "OrderPaid.CustomerNotification";
public const string SendOrderCompletedCustomerMessage = "OrderCompleted.CustomerNotification";
public const string SendOrderCancelledCustomerMessage = "OrderCancelled.CustomerNotification";
public const string SendOrderRefundedCustomerMessage = "OrderRefunded.CustomerNotification";
public const string SendOrderPlacedVendorMessage = "OrderPlaced.VendorNotification";
public const string SendOrderPaidVendorMessage = "OrderPaid.VendorNotification";
public const string SendOrderCancelledVendorMessage = "OrderCancelled.VendorNotification";
public const string SendShipmentSentCustomerMessage = "ShipmentSent.CustomerNotification";
public const string SendShipmentDeliveredCustomerMessage = "ShipmentDelivered.CustomerNotification";
public const string SendNewOrderNoteAddedCustomerMessage = "Customer.NewOrderNote";
public const string SendNewsLetterSubscriptionActivationMessage = "NewsLetterSubscription.ActivationMessage";
public const string SendNewsLetterSubscriptionDeactivationMessage = "NewsLetterSubscription.DeactivationMessage";
public const string SendWishlistEmailAFriendMessage = "Wishlist.EmailAFriend";
public const string SendProductEmailAFriendMessage = "Service.EmailAFriend";
public const string SendProductQuestionMessage = "Service.AskQuestion";
public const string SendNewMerchandiseReturnStoreOwnerMessage = "NewMerchandiseReturn.StoreOwnerNotification";
public const string SendMerchandiseReturnStatusChangedCustomerMessage = "MerchandiseReturnStatusChanged.CustomerNotification";
public const string SendNewMerchandiseReturnCustomerMessage = "NewMerchandiseReturn.CustomerNotification";
public const string SendNewMerchandiseReturnNoteAddedCustomerMessage = "Customer.NewMerchandiseReturnNote";
}
}