Adding User's Groups to Customer Order Notification...
Adding User's Groups to Customer Order Notification...
Is there an easy way to list the customers User Groups on the order notification email template? I tried the old guess and check method but can't get them show.
Re: Adding User's Groups to Customer Order Notification...
Try Placing following code in Email template
Code: Select all
#foreach($userGroup in $order.User.UserGroups)
$userGroup.Group.Name
#end
Re: Adding User's Groups to Customer Order Notification...
WELL PLAYED!! Thank you Mazhar! That was exactly what I was looking for.