RMA mail
Tags and loops can be used in email notification related to RMA state change. Can be setup in MC-eEcommerce-RMAs-Email notifications
Available tags
Ecom:Rma.OriginalOrderId
Returns ID of order the RMA is based on
RAZOR
@GetString("Ecom:Rma.OriginalOrderId")
Ecom:Rma.ReplacementOrderId
Returns ID of replacement order based on the RMA
RAZOR
@GetString("Ecom:Rma.ReplacementOrderId")
Available loops
Ecom:Rma.Comments
Returns the list RMA comments
RAZOR
@foreach (LoopItem item in GetLoop("Ecom:Rma.Comments")){ <p>@item.GetValue("TagName")</p> }
Ecom:Rma.RmaOrderLines
The RMAOrderLines
loop lets you display various information about order line of an order the RMA's is based on.
RAZOR
@foreach (LoopItem item in GetLoop("Ecom:Rma.RmaOrderLines")){ <p>@item.GetValue("TagName")</p> }