Commit 53e8eba6 authored by Jeffrey Shell's avatar Jeffrey Shell

small code fixes

parent 6369fa88
__rcs_id__='$Id: SendMailTag.py,v 1.2 1998/01/27 17:27:31 jeffrey Exp $' __rcs_id__='$Id: SendMailTag.py,v 1.3 1998/02/05 16:01:17 jeffrey Exp $'
__version__='$Revision: 1.2 $'[11:-2] __version__='$Revision: 1.3 $'[11:-2]
from MailHost import MailBase from MailHost import MailBase
from DocumentTemplate.DT_Util import * from DocumentTemplate.DT_Util import *
...@@ -81,14 +81,13 @@ class SendMailTag: ...@@ -81,14 +81,13 @@ class SendMailTag:
if self.mailhost: if self.mailhost:
mhost=md[self.mailhost] mhost=md[self.mailhost]
mhost.send(self.section(md.this, md), self.mailto, self.mailfrom,
self.subject)
elif self.smtphost: elif self.smtphost:
mhost=MailBase() mhost=MailBase()
mhost._init(localHost=gethostname(), smtpHost=self.smtphost, mhost._init(localHost=gethostname(), smtpHost=self.smtphost,
smtpPort=self.port) smtpPort=self.port)
mhost.send(self.section(md.this, md), self.mailto, self.mailfrom,
self.subject) mhost.send(self.section(md.this, md), self.mailto, self.mailfrom,
self.subject)
return ' ' return ' '
...@@ -99,6 +98,9 @@ String.commands['sendmail']=SendMailTag ...@@ -99,6 +98,9 @@ String.commands['sendmail']=SendMailTag
############################################################# #############################################################
# #
# $Log: SendMailTag.py,v $ # $Log: SendMailTag.py,v $
# Revision 1.3 1998/02/05 16:01:17 jeffrey
# small code fixes
#
# Revision 1.2 1998/01/27 17:27:31 jeffrey # Revision 1.2 1998/01/27 17:27:31 jeffrey
# fixed mailhost-getting bug # fixed mailhost-getting bug
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment