Мандип Сингх Бхабха wrote:
How to use this module if there is russian language in subject field ? Body
of message, can be send using html.
use the # _text_info
# _html_info keys for the message, use the Mail::Sender object's
encoding methods for the subject, etc
--
To unsubscribe, e-mail:
TED]
Sent: Friday, June 02, 2006 9:53 PM
To: beginners@perl.org
Subject: Re: Sendmail mail from script
Мандип Сингх Бхабха wrote:
> There are multiple ways to send mail from perl script. I think this
> code will help.
Your life will be much much much simpler if you use
Mail::Se
Мандип Сингх Бхабха wrote:
There are multiple ways to send mail from perl script. I think this code
will help.
Your life will be much much much simpler if you use
Mail::Sender::Easy
http://search.cpan.org/perldoc?Mail::Sender::Easy
You can do or die it and do very complec things, and very
Hi Mandeep,
Thanks a lot, your first option works i've just add another switch -v to
mail for it looks for recepient address without it.
Anyway, i will look at the second option too next.
with thanks,
/joseph
""íÁÎÄÉÐ óÉÎÇÈ âÈÁÂÈÁ"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTE
There are multiple ways to send mail from perl script. I think this code
will help.
open(ML,"|mail -s \"Subject of mesaages should be here\" [EMAIL PROTECTED]")
or die " Can't open mail handle: $!";
print ML $_ ;
close(ML);