ciaran has asked for the wisdom of the Perl Monks concerning the following question:
Thanks,use Mail::SendEasy; use RTF::Writer; my $rtf = RTF::Writer->new_to_file("greetings.rtf"); $rtf->prolog( 'title' => "Greetings, hyoomon" ); $rtf->number_pages; $rtf->paragraph( \'\fs40\b\i', # 20pt, bold, italic "Hi there!" ); $rtf->close; my $status=Mail::SendEasy::send( from => 'sender@company.com', to => 'receiver@company.com', subject => "Morning Report", anex => "greetings.rtf");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: RTF Attachments with Mail::SendEasy
by Anonymous Monk on Oct 21, 2005 at 14:05 UTC | |
by ciaran (Initiate) on Oct 26, 2005 at 12:57 UTC |