Subversion Repositories SmartDukaan

Rev

Rev 13476 | Rev 15006 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13476 Rev 14927
Line 65... Line 65...
65
        return part
65
        return part
66
 
66
 
67
    def sendMail(self, mail):
67
    def sendMail(self, mail):
68
        msg = MIMEMultipart()
68
        msg = MIMEMultipart()
69
    
69
    
70
        msg['From'] = "help@saholic.com"
70
        msg['From'] = mail.emailFrom
71
        msg['To'] = ', '.join(mail.emailTo)
71
        msg['To'] = ', '.join(mail.emailTo)
72
        msg['Cc'] = ', '.join(mail.cc)
72
        msg['Cc'] = ', '.join(mail.cc)
73
        #msg['Bcc'] = ', '.join(mail.bcc)
73
        #msg['Bcc'] = ', '.join(mail.bcc)
74
        msg['Subject'] = mail.subject
74
        msg['Subject'] = mail.subject
75
        
75