Mail m = new Mail(); m.sFrom = "john@lazyj.ro"; m.sTo = "itzic@lazyj.ro;strul@lazyj.ro"; m.sCC = "hans@lazyj.ro"; m.sBCC = "boss@lazyj.ro"; m.sSubject = "test message"; m.sBody = "some text here"; m.sHTMLBody = "the same text as html"; m.sAttachedFiles = "/some/file;/another/file"; Sendmail s = new Sendmail(m.sFrom); s.send(m);@author costing @since 2006-10-06 @see lazyj.mail.Sendmail
|
|