16 references to _helper
System.Web (16)
Util\SmtpMail.cs (16)
167Object newMail = _helper.CreateInstance(); 172_helper.SetProp(newMail, "From", message.From); 175_helper.SetProp(newMail, "To", message.To); 178_helper.SetProp(newMail, "Cc", message.Cc); 181_helper.SetProp(newMail, "Bcc", message.Bcc); 184_helper.SetProp(newMail, "Subject", message.Subject); 193_helper.SetProp(newMail, "Importance", p); 197_helper.CallMethod(newMail, "SetLocaleIDs", new Object[1] { message.BodyEncoding.CodePage }); 200_helper.SetProp(newMail, "ContentBase", message.UrlContentBase); 203_helper.SetProp(newMail, "ContentLocation", message.UrlContentLocation); 211_helper.SetProp(newMail, "Value", k, v); 216_helper.SetProp(newMail, "BodyFormat", 0); 217_helper.SetProp(newMail, "MailFormat", 0); 221_helper.SetProp(newMail, "Body", (message.Body != null) ? message.Body : String.Empty); 232_helper.CallMethod(newMail, "AttachFile", new Object[3] { a.Filename, null, (Object)c }); 236_helper.CallMethod(newMail, "Send", new Object[5] { null, null, null, null, null });