46a47,56 > # %recipient_aliases defines aliases for your e-mail recipients. Aliases # > # defined here can be used as a recipient value in your web forms, so your # > # e-mail address will not be out there on the web. This should help you # > # preventing your addresses from showing up in spam address lists. # > # For example: # > # %recipient_aliases = ( # > # 'foo' => 'foo@domain.com', # > # 'bar' => 'bar@hostname.net', # > # ); # > 228a239,249 > # Substitute recipient aliases > foreach $send_to (split(/,/,$Config{'recipient'})) { > if ($alias = $recipient_aliases{$send_to}) { > push(@send_to_list,$alias); > } > else { > push(@send_to_list,$send_to); > } > } > $Config{'recipient'} = join(',',@send_to_list); > 321c342,343 < print "Below is what you submitted to $safeConfig{'recipient'} on "; --- > #print "Below is what you submitted to $safeConfig{'recipient'} on "; > print "Below is what you submitted on ";