Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Sending email Help!

by Anonymous Monk
on Jan 02, 2013 at 04:17 UTC ( [id://1011203]=note: print w/replies, xml ) Need Help??


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

my $first_name = $args{first_name} || ''; my $last_name = $args{last_name} || '';
in your code, will perhaps be better written as
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

    in your code, will perhaps be better written as

    No it won't

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1011203]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-03-19 08:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found