{ "args" => [ "thiagopaz1986\@gmail.com", "Confirm registration", "Please visit http://192.168.56.30:3000/confirm?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImZyZWQifQ.hqRpEjfmu5r-pnCcHYKn29G27AVOz_rtjLpNrPoXoxE to confirm" ], "attempts" => 1, "children" => [], "created" => "1473314401", "delayed" => "1473314401", "finished" => "1473446944", "id" => 7, "parents" => [], "priority" => 0, "queue" => "default", "result" => undef, "retried" => undef, "retries" => 0, "started" => "1473446939", "state" => "finished", "task" => "email_task", "worker" => 1 } #### #!/usr/bin/perl -w use strict; use Email::Simple; use Email::Sender::Simple; my $email = Email::Simple->create( header => [ To => 'thiagopaz1986@gmail.com', From => 'sdpdeteste@bol.com.br', Subject => 'Mojo teste' , ], body => 'Hello monks', ); Email::Sender::Simple->send($email);