本文整理汇总了Python中repoze.sendmail.delivery.QueuedMailDelivery.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python QueuedMailDelivery.__init__方法的具体用法?Python QueuedMailDelivery.__init__怎么用?Python QueuedMailDelivery.__init__使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类repoze.sendmail.delivery.QueuedMailDelivery
的用法示例。
在下文中一共展示了QueuedMailDelivery.__init__方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from repoze.sendmail.delivery import QueuedMailDelivery [as 别名]
# 或者: from repoze.sendmail.delivery.QueuedMailDelivery import __init__ [as 别名]
def __init__(self, settings):
self.mfrom = settings.get("envelope_from_addr", "[email protected]%s" % getfqdn())
self.bounce_from = settings.get("postoffice.bounce_from_email", self.mfrom)
queue_path = settings.get("mail_queue_path", None)
if queue_path is None:
# Default to var/mail_queue
# we assume that the console script lives in the 'bin' dir of a
# sandbox or buildout, and that the mail_queue directory lives in
# the 'var' directory of the sandbox or buildout
exe = sys.executable
sandbox = os.path.dirname(os.path.dirname(os.path.abspath(exe)))
queue_path = os.path.join(os.path.join(sandbox, "var"), "mail_queue")
queue_path = os.path.abspath(os.path.normpath(os.path.expanduser(queue_path)))
QueuedMailDelivery.__init__(self, queue_path)
示例2: __init__
# 需要导入模块: from repoze.sendmail.delivery import QueuedMailDelivery [as 别名]
# 或者: from repoze.sendmail.delivery.QueuedMailDelivery import __init__ [as 别名]
def __init__(self, settings):
self.mfrom = getattr(settings, 'envelope_from_addr', None)
queue_path = getattr(settings, "mail_queue_path", None)
if queue_path is None:
# Default to var/mail_queue
# we assume that the console script lives in the 'bin' dir of a
# sandbox or buildout, and that the mail_queue directory lives in
# the 'var' directory of the sandbox or buildout
exe = sys.executable
sandbox = os.path.dirname(os.path.dirname(os.path.abspath(exe)))
queue_path = os.path.join(
os.path.join(sandbox, "var"), "mail_queue"
)
queue_path = os.path.abspath(os.path.normpath(
os.path.expanduser(queue_path)))
QueuedMailDelivery.__init__(self, queue_path)