Net::SMTP::IPMM

IronPort Mail-Merge interface
Download

Net::SMTP::IPMM Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Publisher Name:
  • Mike Friedman
  • Publisher web site:
  • http://search.cpan.org/~friedo/

Net::SMTP::IPMM Tags


Net::SMTP::IPMM Description

IronPort Mail-Merge interface IronPort Mail Merge (IPMM) is a proprietary extension to SMTP used on IronPort's email server appliances. Net::SMTP::IPMM is a Perl module, a subclass of Net::SMTP which impliments the IPMM extensions. All the Net::SMTP methods are inherrited by this module. See the documentation for Net::SMTP for general usage examples. For more on IPMM, see the documentation that came with your IronPort appliance.SYNOPSIS use Net::SMTP::IPMM; my $ipmm = Net::SMTP::IPMM->new( 'ipmmhost' ); # define parts my $part1 = "From: me\@mydomain.org\n" . "To: &*TO;\n" . "Subject: This is a message\n\n" . "Dear &FNAME;,\n"; my $part2 = "Your last name is &LNAME;.\n"; # from addresss $self->xmrg( 'me@mydomain.com' ); # first person, both parts $self->xdfn( parts => "1,2", fname => "Some", lname => "Guy", ); $self->to( 'someguy@example.com' ); # second person, first part only $self->xdfn( parts => "1", fname => "Another", lname => "Guy", ); $self->to( 'anotherguy@somewhereelse.com' ); # send the parts. $self->xprt( $part1, $part2 ); Requirements: · Perl


Net::SMTP::IPMM Related Software