Rev 1891 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
'''Created on 5-Jan-2011@author: rajveer'''from shop2020.clients.HelperClient import HelperClientfrom shop2020.thriftpy.utils.ttypes import *helper_client = HelperClient()helper_client.__start__()client = helper_client.get_client()mail = Mail()mail.to = ["rajveer.singh@shop2020.in","rajveer.singh@shop2020.in"]mail.subject = "Test mail subject"mail.data = "Mail text"mail.password = "dummy"mail.sender="rajveer.singh@shop2020.in"client.sendMail(mail)