Email::Sender::Transport::SMTP::Persistent - an SMTP client that stays online


Email-Sender documentation Contained in the Email-Sender distribution.

Index


Code Index:

NAME

Top

Email::Sender::Transport::SMTP::Persistent - an SMTP client that stays online

VERSION

Top

version 0.110001

DESCRIPTION

Top

The stock Email::Sender::Transport::SMTP reconnects each time it sends a message. This transport only reconnects when the existing connection fails.

METHODS

Top

disconnect

  $transport->disconnect;

This method sends an SMTP QUIT command and destroys the SMTP client, if on exists and is connected.

AUTHOR

Top

Ricardo Signes <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Email-Sender documentation Contained in the Email-Sender distribution.

package Email::Sender::Transport::SMTP::Persistent;
BEGIN {
  $Email::Sender::Transport::SMTP::Persistent::VERSION = '0.110001';
}
use Moose;
extends 'Email::Sender::Transport::SMTP';
# ABSTRACT: an SMTP client that stays online


use Net::SMTP;

has _cached_client => (
  is => 'rw',
);

sub _smtp_client {
  my ($self) = @_;

  if (my $client = $self->_cached_client) {
    return $client if eval { $client->reset; $client->ok; };

    my $error = $@
             || 'error resetting cached SMTP connection: ' . $client->message;

    Carp::carp($error);
  }

  my $client = $self->SUPER::_smtp_client;

  $self->_cached_client($client);

  return $client;
}

sub _message_complete { }


sub disconnect {
  my ($self) = @_;
  return unless $self->_cached_client;
  $self->_cached_client->quit;
  $self->_cached_client(undef);
}

__PACKAGE__->meta->make_immutable;
no Moose;
1;

__END__