View Single Post
  #2  
Old 06-09-2010, 05:15 PM
 
TheWrongGrape TheWrongGrape is offline
 

Advanced Member
  
Join Date: Nov 2002
Location: Los Angeles, CA
Posts: 68
 

Default Re: Add a field to "Send to Friend"

Just did this for my site running 4.3.1

In send_to_friend.php, add this code around line 78 below $mail_smarty->assign ("product", $product_info);
Code:
$mail_smarty->assign ("msg", $msg);

In skin1/customer/main/send_to_friend.tpl add a new row before the row containing the submit button:
Code:
<tr> <td class="data-name"><label for="msg">Optional Message</label>:</td> <td></td> <td> <textarea id="msg" type="textarea" name="msg" /></textarea> </td> </tr>
Style and size the textarea however you like.

Lastly, in either your HTML or text email tpl file (I use skin1/mail/html/send2friend.tpl), add:
Code:
{if $msg} $msg <br/> {/if}

Hope this helps. Kudos to Shan's old post for giving me the help I needed.
Reply With Quote