Archived:How to send email using PySymbian
Article Metadata
Tested with
Devices(s): Nokia N95, Nokia E90
Compatibility
Platform(s): S60 3rd Edition
Article
Keywords: messaging
Created: (08 Jun 2008)
Last edited: bogdan.galiceanu
(04 Dec 2008)
Contents |
Overview
This snippet shows how to send email in Python.
Preconditions
Note: This method is available from S60 3.0 onwards (inclusive).
Source code
import messaging
attachment = "E:\\Images\\photo.jpg"
#The path of the file you wish to attach (optional)
messaging.mms_send("address", u"message", attachment)
#Where "address" is the email address of the recipient, like abc@xyz.com
Postconditions
The message (in Unicode format) along with the attachment is sent to the specified address (in string format).

