RE: How to get the link to transaction in email template

Hello All;

I’m making workflow with action send email, but I’m using email template, so I need to insert the link for the transaction in the email template, however it’s disabled when I select use template.

RE: How to get the link to transaction in email template

basem Rookie Asked on April 16, 2020 in Administration.
Add Comment
2 Answers

I’ve used this before in email templates:

<span style=”font-family:Verdana,Geneva,sans-serif;”><span style=”font-size:10px;”><strong>Link To Transaction:</strong>&nbsp;<a href=”${transaction.url}”>${transaction.id} </a><br />

Just paste where you want it while viewing in the source code mode.

When viewing the template in normal mode, it will show up like this:

Link To Transaction: ${transaction.id}

Hope this helps

 

Beginner Answered on April 20, 2022.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.