there is a plugin you can use to append text to a post but remember this will work on all posts
PHP Code:
global $vbulletin;
$search_text = '<!-- / message -->';
$vbulletin->templatecache['postbit'] = str_replace($search_text,
$search_text.fetch_template('cm_postbit'),$vbulletin->templatecache['postbit']);
$vbulletin->templatecache['postbit_legacy'] = str_replace($search_text,
$search_text.fetch_template('cm_postbit'),$vbulletin->templatecache['postbit_legacy']);
i found this from another mod but can't remember which one now just remember i didn't write this. This will add the template to the bottom of every post