iro/user.py
changeset 58 fb161058bcab
parent 57 97ef6ca145e6
child 60 5ca3aa8d75e1
--- a/iro/user.py	Thu Nov 04 21:57:51 2010 +0100
+++ b/iro/user.py	Thu Nov 04 21:58:59 2010 +0100
@@ -100,10 +100,10 @@
 
     
         
-    def startMail(self,subject,  body , recipients,provider="default"):
+    def startMail(self, subject,  body, recipients, frm, provider="default"):
         if not "mail" in self.features:
             raise NotSupportedFeature("mail")
-        id = self.jobqueue.newMail(subject,  body ,recipients,provider)
+        id = self.jobqueue.newMail(subject, body, recipients, frm,  provider)
         self.jobs[id]=self.jobqueue[id]
         return id