In item-send-friend.php find this line:
<div class="row">
<label for="message"><span><?php _e('Message', 'gamma'); ?></span><span class="req">*</span></label>
<?php ContactForm::your_message(); ?>
</div>
Bellow it add this code:
<?php if(osc_item_attachment()) { ?>
<div class="row">
<label for="attachment"><?php _e('Attachment', 'gamma'); ?>:</label>
<div class="input-box"><?php ContactForm::your_attachment(); ?></div>
</div>
<?php } ?>
Form submit without reload (Ajax) - should be disabled, as file cannot be uploaded and sent via ajax.