travelynx/lib/Travelynx/Helper/Sendmail.pm

42 lines
763 B
Perl
Raw Normal View History

2019-04-02 18:10:48 +00:00
package Travelynx::Helper::Sendmail;
use strict;
use warnings;
use 5.020;
use Encode qw(encode);
use Email::Sender::Simple qw(try_to_sendmail);
use MIME::Entity;
2019-04-02 18:10:48 +00:00
sub new {
2019-04-13 15:09:10 +00:00
my ( $class, %opt ) = @_;
2019-04-02 18:10:48 +00:00
2019-04-13 15:09:10 +00:00
return bless( \%opt, $class );
2019-04-02 18:10:48 +00:00
}
sub custom {
my ( $self, $to, $subject, $body ) = @_;
2019-04-02 18:10:48 +00:00
my $reg_mail = MIME::Entity->build(
To => $to,
2020-03-14 13:57:30 +00:00
From => $self->{config}{from},
Subject => encode( 'MIME-Header', $subject ),
Type => 'text/plain',
Charset => 'UTF-8',
Encoding => 'quoted-printable',
Data => encode( 'utf-8', $body ),
2019-04-02 18:10:48 +00:00
);
if ( $self->{config}->{disabled} ) {
2019-04-02 18:10:48 +00:00
# Do not send mail in dev mode
$self->{log}->info("sendmail to ${to}: ${subject}\n\n${body}");
2019-04-02 18:10:48 +00:00
return 1;
}
return try_to_sendmail($reg_mail);
}
1;