We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06c284f commit 2fb1bf0Copy full SHA for 2fb1bf0
README.md
@@ -23,6 +23,13 @@ Thanks for buying from %Store.Name%. Below is the summary of the order.
23
}
24
...
25
Order Number: %Order.OrderNumber%
26
+...
27
+@if (Nop.Core.Domain.Customers.CustomerExtensions.IsInCustomerRole(Model.Customer, "Registered"))
28
+{
29
+ <div>
30
+ Thanks for your Registration.
31
+ </div>
32
+}
33
```
34
35
Any Message Template has the related Objects available in the Model. E.g. Model.Order, Model.Customer, Model.Vendor etc. Works with Subject and Body.
0 commit comments