neversaint has asked for the wisdom of the Perl Monks concerning the following question:
Since I don't have any control to the SMTP server, is there a way in MIME::Lite or any other method to remove the above disclaimer?------------ Some Company Name - Disclaimer -------------This email is + confidential and may be privileged. If you are not the intended rec +ipient, please delete it and notify us immediately. Please do not cop +y or use it for any purpose, or disclose its contents to any other pe +rson. Thank you.----------------------------------------------------- +---
use strict; use warnings; use MIME::Lite; my $msg = MIME::Lite->new( From => "myemail@domain.com", To => "somebody@gmail.com", Subject => "Some Subject", Data => "Some long message", ); $msg->send();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Howto Remove Email Disclaimer Message with MIME::Lite / Perl
by erroneousBollock (Curate) on Sep 17, 2007 at 03:54 UTC | |
|
Re: Howto Remove Email Disclaimer Message with MIME::Lite/Perl
by samtregar (Abbot) on Sep 17, 2007 at 16:05 UTC | |
|
Re: Howto Remove Email Disclaimer Message with MIME::Lite/Perl
by Anonymous Monk on Jan 14, 2009 at 00:12 UTC |