App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
google.appengine._internal.django.core.mail.message.EmailMultiAlternatives Class Reference
Inheritance diagram for google.appengine._internal.django.core.mail.message.EmailMultiAlternatives:
google.appengine._internal.django.core.mail.message.EmailMessage

Public Member Functions

def __init__
 
def attach_alternative
 
- Public Member Functions inherited from google.appengine._internal.django.core.mail.message.EmailMessage
def __init__
 
def get_connection
 
def message
 
def recipients
 
def send
 
def attach
 
def attach_file
 

Public Attributes

 alternatives
 
- Public Attributes inherited from google.appengine._internal.django.core.mail.message.EmailMessage
 to
 
 bcc
 
 from_email
 
 subject
 
 body
 
 attachments
 
 extra_headers
 
 connection
 

Static Public Attributes

string alternative_subtype = 'alternative'
 
- Static Public Attributes inherited from google.appengine._internal.django.core.mail.message.EmailMessage
string content_subtype = 'plain'
 
string mixed_subtype = 'mixed'
 
 encoding = None
 

Detailed Description

A version of EmailMessage that makes it easy to send multipart/alternative
messages. For example, including text and HTML versions of the text is
made easier.

Constructor & Destructor Documentation

def google.appengine._internal.django.core.mail.message.EmailMultiAlternatives.__init__ (   self,
  subject = '',
  body = '',
  from_email = None,
  to = None,
  bcc = None,
  connection = None,
  attachments = None,
  headers = None,
  alternatives = None 
)
Initialize a single email message (which can be sent to multiple
recipients).

All strings used to create the message can be unicode strings (or UTF-8
bytestrings). The SafeMIMEText class will handle any necessary encoding
conversions.

Member Function Documentation

def google.appengine._internal.django.core.mail.message.EmailMultiAlternatives.attach_alternative (   self,
  content,
  mimetype 
)
Attach an alternative content representation.

The documentation for this class was generated from the following file: