I'm calling code that looks a bit like the following, which is from Email::Sender::Manual::QuickStart
use Email::Sender::Simple qw(sendmail);
use Email::MIME;
use Data::Printer;
my $email = Email::MIME->create(...);
my $result = sendmail($email);
p $result;
I get the following error message:
Odd number of elements in hash assignment at .../Data/Printer.pm line 109.
And then I get the expected output.
% mversion Data::Printer
1.002001
% perl -v
This is perl 5, version 32, subversion 1 (v5.32.1) built for darwin-2level
I'm calling code that looks a bit like the following, which is from Email::Sender::Manual::QuickStart
I get the following error message:
And then I get the expected output.