...
In the storefronts Receipt template and Email Notification receipt template you can use the $order.isPurchased velocity statement to customize the receipt page and email notification to notify the customer of the emailing coming form Wishlist member that contains their login credentials.
Example:
Code Block |
---|
<br>
## Start Conditional if item "monthly_subscription" is purchased
#if ($order.isPurchased("monthly_subscription"))
<p>Attention: Your login credentials are being sent to you in a separate message from wishlistmember.</p>
#end
## End Conditional if item "monthly_subscription" is purchased |
Here's how this appears in editor within the receipt_html.vm :
And here is how it appears when previewing the receipt with an order that contains the "monthly_subscription":
See the following document for an example of how to edit the template to include the message: Adding Item Specific Content to the Receipt
(this example is for editing the receipt template to the actual checkout but the velocity coding is essentially the same for the email template.
...