星期三, 3月 16, 2005

search.cpan.org: MIME::Lite - low-calorie MIME generator

search.cpan.org: MIME::Lite - low-calorie MIME generator: " $msg = MIME::Lite->new(
To =>'you@yourhost.com',
Subject =>'HTML with in-line images!',
Type =>'multipart/related'
);
$msg->attach(Type => 'text/html',
Data => qq{
Here's my image:

}
);
$msg->attach(Type => 'image/gif',
Id => 'myimage.gif',
Path => '/path/to/somefile.gif',
);
$msg->send();"