473,386 Members | 1,832 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Yet more SMTP

Ok with some tweaking I got it to where I could send through my local isp's
smtp server, but I am restricted to sending the message from my ISP's mail
account. When I respond to Yahoo mail, I want to use my yahoo address. I was
able to get into aol's smtp with:
s = smtplib.SMTP('smtp.aol.com', 587)
s.set_debuglevel(1)
s.ehlo()
s.docmd('AUTH', 'PLAIN')
s.docmd('LutherRevisited')
s.docmd('myPassword')
s.sendmail('l**************@aol.com', [to], msg)
s.quit()
but I'm unable to send on that server with my yahoo address, when I try this on
yahoo's smtp server it does not require me to use AUTH, but AOL drops my
messages giving me some kind of 'bulk mail, yada yada' message. I don't have
this problem with Outlook using Yahoo's smtp server, so I'm curious to know
what it is that Outlook is doing that I'm missing in my code? With Yahoo I did
something like:
s = smtplib.SMTP('smtp.yahoo.com')
s.set_debuglevel(1)
s.ehlo()
s.sendmail('b*************@yahoo.com', [to], msg)
s.quit()
but this is dropped for some odd reason. Any thoughts? Also I never got the
login method of smtp to work with AOL's smtp, so I had to run through that by
hand. Can someone tell me if I'm missing something there also?
Jul 18 '05 #1
4 2025
LutherRevisited wrote:
Ok with some tweaking I got it to where I could send through my local isp's
smtp server, but I am restricted to sending the message from my ISP's mail
account. When I respond to Yahoo mail, I want to use my yahoo address. I was
able to get into aol's smtp with:
s = smtplib.SMTP('smtp.aol.com', 587)
s.set_debuglevel(1)
s.ehlo()
s.docmd('AUTH', 'PLAIN')
s.docmd('LutherRevisited')
s.docmd('myPassword')
s.sendmail('l**************@aol.com', [to], msg)
s.quit()
but I'm unable to send on that server with my yahoo address, when I try this on
yahoo's smtp server it does not require me to use AUTH, but AOL drops my
messages giving me some kind of 'bulk mail, yada yada' message. I don't have
this problem with Outlook using Yahoo's smtp server, so I'm curious to know
what it is that Outlook is doing that I'm missing in my code? With Yahoo I did
something like:
s = smtplib.SMTP('smtp.yahoo.com')
s.set_debuglevel(1)
s.ehlo()
s.sendmail('b*************@yahoo.com', [to], msg)
s.quit()
but this is dropped for some odd reason. Any thoughts? Also I never got the
login method of smtp to work with AOL's smtp, so I had to run through that by
hand. Can someone tell me if I'm missing something there also?


You may find this URL helpful:

http://techsupport.ath.vt.edu/X-Junkmail-Status.html
Jul 18 '05 #2
Thanks for the reply, that link is down right now, but I'll give it a look
tommorow. Getting technical support from AOL is like pulling teeth......geez.
This guy was insisting that I should contact Yahoo about this. How in the
world is Yahoo going to be able to answer my questions about the smtp server
that aol rerouted me too?
Jul 18 '05 #3
On Tue, Oct 19, 2004 at 12:03:08AM +0000, LutherRevisited wrote:
[...]
s = smtplib.SMTP('smtp.aol.com', 587)
[...]
s.docmd('AUTH', 'PLAIN')
[...]


Don't reinvent the wheel. Use .login instead(). Also, PLAIN doesn't
mean you send the password in plain text (it's encoded with base64).
And the developers of the Python standard library - in this case, me
:-P - already did that work once for you in .login() of the SMTP
object ;-)

-- Gerhard
Jul 18 '05 #4
LutherRevisited wrote:
Thanks for the reply, that link is down right now, but I'll give it a look
tommorow. Getting technical support from AOL is like pulling teeth......geez.
This guy was insisting that I should contact Yahoo about this. How in the
world is Yahoo going to be able to answer my questions about the smtp server
that aol rerouted me too?


We had a power outage last night around 10:PM Eastern time. The link is
back up now.
Jul 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Dan Boyle | last post by:
Hi, I am having difficulty connection to an smtp host. I am using the following code but I don't think I fully understand what smtp host can be used. function setSMTPParams($host = null,...
21
by: Nancy | last post by:
Hi, Guys, Is there any other way to use python or mod_python writing a web page? I mean, not use "form.py/email", no SMTP server. <form action="form.py/email" method="POST"> ... Thanks a lot. ...
0
by: Almir | last post by:
I hate this Net::SMTP stuff, everything works fine but for the suject field. I see no way of having it show in an email when sent. Has anyone had this problem, can anyone explain why there are no...
2
by: RandRace | last post by:
I'm having some problems with a little script i wrote using net::smtp. I originally wrote it in linux where it works perfectly. I tried to use it from windows the other day and it doesn't work. It...
3
by: Shannon Clyde | last post by:
SMTP + relay + auth in an IPSEC tunnel to connect to our primary SMTP mail server (GroupWise) from the Web server looks like it would work fine, but is it the best way? I am aware of CDOSYS and...
3
by: dale zhang | last post by:
Hi, I write an asp.net web application. It has a “Contact Us” page, where users fill in their email, subject and text and hit send. Then the email will go to my hard coded yahoo email...
1
by: bivin | last post by:
hai i am requesting your technical support. please help me. i have been working with this for five days. the problem is relating with the smtp. i am trying to send an email from the asp.net...
34
by: antonyliu2002 | last post by:
I've set up the virtual smtp server on my IIS 5.1 like so: 1. Assign IP address to "All Unassigned", and listen to port 25. 2. Access Connection granted to "127.0.0.1". 3. Relay only allow...
13
by: jcor | last post by:
Hi, I'm trying some code to send a mail with my script. This is it: #!/usr/bin/perl use Net::SMTP; my $smtp_server='62.193.245.15'; my $smtp = Net::SMTP->new($smtp_server) or die "Can't Open...
5
by: jimhill10 | last post by:
I have a perl script that creates an email attachment file from POST data on a web page. This works just fine. I want to customize the email body to contain all of the text data from the file...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.