source: products/vendor/Products.MailHost/current/src/Products/MailHost/interfaces.py

Last change on this file was 3356, checked in by fenix, 12 years ago

Load 2.13.1 into vendor/Products.MailHost?/current.

  • Property svn:eol-style set to native
File size: 862 bytes
Line 
1##############################################################################
2#
3# Copyright (c) 2005 Zope Foundation and Contributors.
4#
5# This software is subject to the provisions of the Zope Public License,
6# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
7# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
8# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
9# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
10# FOR A PARTICULAR PURPOSE.
11#
12##############################################################################
13"""MailHost interfaces.
14"""
15
16from zope.interface import Interface
17
18
19class IMailHost(Interface):
20
21    def send(messageText, mto=None, mfrom=None, subject=None, encode=None,
22             charset=None, msg_type=None):
23        """Send mail.
24        """
Note: See TracBrowser for help on using the repository browser.