Re: mail sending using telnet in python

2005-07-08 Thread Piet van Oostrum
> praba kar <[EMAIL PROTECTED]> (PK) wrote: >PK> Normally we can send mail using >PK> telnet in linux. In the following way >PK> [~user]telnet Ipaddress 25 In fact you are using SMTP through the telnet program. So in Python use the smtplib module. -- Piet van Oostrum <[EMAIL PROTECTED]

Re: mail sending using telnet in python

2005-07-08 Thread Jorgen Grahn
On Fri, 8 Jul 2005 07:49:25 +0100 (BST), praba kar <[EMAIL PROTECTED]> wrote: > Dear All, > Normally we can send mail using > telnet in linux. In the following way > [~user]telnet Ipaddress 25 > mail from: [EMAIL PROTECTED] > 250 o.k(response of from commandline) ... That is sometimes a very

Re: mail sending using telnet in python

2005-07-08 Thread Max M
praba kar wrote: > Dear All, > Normally we can send mail using > telnet in linux. In the following way > Is it possible to run same thing same manner > in python? If possible kindly help me with > specimen code. Actually I gone through > telnetlib module documentation but I cann't > get so

mail sending using telnet in python

2005-07-07 Thread praba kar
Dear All, Normally we can send mail using telnet in linux. In the following way [~user]telnet Ipaddress 25 mail from: [EMAIL PROTECTED] 250 o.k(response of from commandline) rcpt to: [EMAIL PROTECTED] 250 o.k(response of from commandline) data 354 go ahead(response of from commandline) Hello