Hi all,
Currently on v1.15.4 and am currently adding a button to email a vendor.
Test code I am using is as follows:
<a href="mailto:<?php echo $ticket->getOwner();?>@Yoursite.com " id="email_btn" class="post-response action-button"
data-placement="bottom" data-toggle="tooltip"
title="<?php echo __('Email btn'); ?>"><i class="icon-signal"></i></a><?php
Which works to add the email address as CustomerName@yoursite.com
What I am trying to do is also input info from the custom forms used to create the ticket (ex. Serial number).
Any help would be great.
Thank you!