Help for this page

Select Code to Download


  1. or download this
    $msg = MIME::Lite->new(
         To      =>'you@yourhost.com',
    ...
        Path => '/path/to/somefile.gif',
    );
    $msg->send();
    
  2. or download this
    $smtp->datasend(
      join "\n",
    ...
        split "\n",
        $msg->as_string
    );