my $from = "abc1\@gmail.com"; # double quotes my $to = 'abc3\@gmail.com'; # single quotes print "from: $from"; print "to: $to"; __END__ from: abc1@gmail.com to: abc3\@gmail.com # !!