Mail::Builder::Address - Module for handling e-mail addresses


Mail-Builder documentation  | view source Contained in the Mail-Builder distribution.

Index


NAME

Top

Mail::Builder::Address - Module for handling e-mail addresses

SYNOPSIS

Top

  use Mail::Builder;

  my $mail = Mail::Builder::Address->new('mightypirate@meele-island.mq','Gaybrush Thweedwood');
  # Now correct type in the display name and address
  $mail->name('Guybrush Threepwood');
  $mail->email('verymightypirate@meele-island.mq');
  $mail->comment('Mighty Pirate (TM)');

  # Serialize
  print $mail->serialize;

  # Use the address as a recipient for  Mail::Builder object
  $mb->to($mail); # Removes all other recipients 
  OR
  $mb->to->add($mail); # Adds one more recipient (without removing the existing ones)

DESCRIPTION

Top

This is a simple module for handling e-mail addresses. It can store the address and an optional display name.

METHODS

Top

Constructor

new

 Mail::Builder::Address->new(EMAIL[,DISPLAY NAME[,COMMENT]]);
 OR
 Mail::Builder::Address->new({
     email      => EMAIL,
     [ name     => DISPLAY NAME, ]
     [ comment  => COMMENT, ]
 })

Simple constructor

Public Methods

serialize

Prints the address as required for creating the e-mail header.

compare

 $obj->compare(OBJECT);
 or
 $obj->compare(E-MAIL);

Checks if two address objects contain the same e-mail address. Returns true or false. The compare method does not check if the address names of the two objects are identical.

Instead of a Mail::Builder::Address object you can also pass a scalar value representing the e-mail address.

Accessors

name

Display name

email

E-mail address. Will be checked with Email::Valid

Required

comment

Comment

AUTHOR

Top

    Maroš Kollár
    CPAN ID: MAROS
    maros [at] k-1.com
    http://www.k-1.com


Mail-Builder documentation  | view source Contained in the Mail-Builder distribution.