|
From: <ja...@op...> - 2001-01-31 22:35:26
|
Hey Harry, We should not escape the email addresses. Perl only upchucks if you place them inside an interpolated string (i.e. a string with double-quotes). If you place them inside a non-interpolated string (i.e. a string with single-quotes) all is well. Example: my $email_address = 'ja...@op...'; print STDOUT <<"EOF"; Hi, You told me to send email to $email_address EOF However, if you write my $email_address = "ja...@op..."; Perl will barf immediately. jas. "Harry Mangalam" <man...@ho...> writes: > Did we make a decision about how to represent email addresses in the > install-all.pl script? If we don't convert them to yadda\@address > in scripts, perl upchucks. On the other hand if we do convert them > bulk to \@, it'll look funny in regular text messages. |