in reply to Sending email Help!
While I can tell for sure where or what the problem is checking through your codes, I think you will do tell to heed the warning of this module's current maintainer MIME::Lite WAIT!
Secondly, this
in your code, will perhaps be better written asmy $first_name = $args{first_name} || ''; my $last_name = $args{last_name} || '';
my $first_name = $args{first_name} // ''; my $last_name = $args{last_name} // '';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Sending email Help!
by Anonymous Monk on Jan 02, 2013 at 07:04 UTC |