in reply to Formatting Help
Not, imho, really enough info, but I'd guess that you might want (for uppercase first char):
sub build_main_email_field { my ($self, $name, $value) = @_; $name = ucfirst $name; return ("$name: ", $value); }
Bold will depend on where you are displaying the value - if html, then (although not really bold):
$name = '<em>' . $name . '</em>';
|
|---|