Hi,
just thinking or asking if a button can be added inside, let say inside a notification or confirmation email that will be sent to customers. I wanted to add a cancel button or reorder button.
thanks in advance
Hi,
just thinking or asking if a button can be added inside, let say inside a notification or confirmation email that will be sent to customers. I wanted to add a cancel button or reorder button.
thanks in advance
<button>Cancel or Reorder</button>
To add a url
<a href="http://www.changetheurltoyoururl.com"><button>Cancel or Reorder</button></a>
I wound inline my CSS in <a>
tag for greater control. Eg.
<a style="background-color:red;color:white;padding:8px 20px;border:0;border-radius:4px;" href="https://full.url.here/" target="_blank">Button Text</a>
In my knowledge there is no option for hover effect.
Thanks so much.