Re: Using pythons smtp server

2013-12-14 Thread Irmen de Jong
On 14-12-2013 1:46, Dennis Lee Bieber wrote: > About then, I discovered the first two significant books on Python at > Computer Literacy, and that an Amiga binary was available (Python 1.4, I > think -- thanks, Irmin). You're welcome, but my name is spelled Irmen, with an 'e' ;-) Cheers Ir

Re: Using pythons smtp server

2013-12-13 Thread Grant Edwards
On 2013-12-13, Vincent Davis wrote: > Grant, Chris > Thanks !!! > I guess in the end this is a bad idea, (for my purposes) I should just use > my gmail account smtp server. If you're going to claim the mail is from @gmail.com, then yes you should definitly send it via Gmail's SMTP server. Doing

Re: Using pythons smtp server

2013-12-13 Thread Chris Angelico
On Sat, Dec 14, 2013 at 5:27 AM, Vincent Davis wrote: > Grant, Chris > Thanks !!! > I guess in the end this is a bad idea, (for my purposes) I should just use > my gmail account smtp server. If you're sending from gmail, use whatever gmail specifies for sending. Otherwise your mail will be seen a

Re: Using pythons smtp server

2013-12-13 Thread Vincent Davis
Grant, Chris Thanks !!! I guess in the end this is a bad idea, (for my purposes) I should just use my gmail account smtp server. Vincent Davis 720-301-3003 On Fri, Dec 13, 2013 at 11:15 AM, Chris Angelico wrote: > On Sat, Dec 14, 2013 at 4:13 AM, Vincent Davis > wrote: > > Let me rephrase my

Re: Using pythons smtp server

2013-12-13 Thread Chris Angelico
On Sat, Dec 14, 2013 at 4:13 AM, Vincent Davis wrote: > Let me rephrase my question. I want to send an email using python but do not > want to use an external service. Does python have the ability to send emails > without installing additional software or using an external server/service? Any SMT

Re: Using pythons smtp server

2013-12-13 Thread Grant Edwards
On 2013-12-13, Vincent Davis wrote: > Obviously I don't really know how this works. I have used python to > send email using "my" smtp server (whatever that may be gmail, > postfix..) But I don't want to do that. After a little more research > I think what I need to do is lookup the MX address of

Re: Using pythons smtp server

2013-12-13 Thread Vincent Davis
Obviously I don't really know how this works. I have used python to send email using "my" smtp server (whatever that may be gmail, postfix..) But I don't want to do that. After a little more research I think what I need to do is lookup the MX address of the address I want to send the email too. The

Re: Using pythons smtp server

2013-12-13 Thread Vincent Davis
ver, send the attachment and shutdown the SMTP after. > > Newsgroups: comp.lang.python > From: Grant Edwards > Subject: Re: Using pythons smtp server > References: > Followup-To: > > On 2013-12-13, Vincent Davis wrote: > > > I have an app that generates a file one a day and

Re: Using pythons smtp server

2013-12-13 Thread Grant Edwards
TPServer > The documentation is kinda sparse and I cant seem to find any good examples. > > Basically what I want to do; when my app runs it would initiate a SMTP > server, send the attachment and shutdown the SMTP after. Newsgroups: comp.lang.python From: Grant Edwards Subject: Re: