[EP-tech] Using Gmail SMTP for sending emails with Eprints 3 3
Ernesto Giovany Correa Vasquez
ecorrea at ci.una.edu.ni
Thu Jul 28 19:33:53 BST 2016
Good Afternoon,
I modified the Email.pm file to send mail through an account in gmail .
The modified code is as follows:
sub send_mail_via_smtp
{
my( %p ) = @_;
eval 'use Net::SMTP::TLS';
my $repository = $p{session}->get_repository;
my $smtphost = $repository->get_conf( 'smtp_server' );
##my $smtphost = 'smtp.gmail.com';
if( !defined $smtphost )
{
$repository->log( "No STMP host has been defined. To fix this, find the full\naddress of your SMTP server (eg. smtp.example.com) and add it\nas the value of smtp_server in\nperl_lib/EPrints/SystemSettings.pm" );
return( 0 );
}
my $smtp = new Net::SMTP::TLS (
$smtphost,
Hello => 'eprints-server.on-linux.org',
Port => 587,
User => 'eprints-server at gmail.com',
Password=> 'gmail_password',
);
# my $smtp = Net::SMTP->new( $smtphost);
if( !defined $smtp )
{
$repository->log( "Failed to create smtp connection to $smtphost" );
return( 0 );
}
$smtp->mail( $p{from_email} );
$smtp->to( $p{to_email} );
# if( !$smtp->recipient( $p{to_email} ) )
# {
# $repository->log( "smtp server refused <$p{to_email}>" );
# $smtp->quit;
# return 0;
# }
my $message = build_email( %p );
my $data = $message->as_string;
# Send the message as bytes, to avoid Net::Cmd wide-character warnings
utf8::encode($data);
$smtp->data;
$smtp->datasend( $data );
$smtp->dataend;
$smtp->quit;
return 1;
}
But when sending mail, displays the following error:
Can't locate object method "new" via package "Net::SMTP::TLS" (perhaps you forgot to load "Net::SMTP::TLS"?) at /usr/share/eprints3/perl_lib/EPrints/Email.pm line 163.
How do I correct this error ?
How do I get to send mail through an account in gmail ?
Thank you
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.ecs.soton.ac.uk/pipermail/eprints-tech/attachments/20160728/44fcb8e4/attachment.html
More information about the Eprints-tech
mailing list