public void EmailReminders(int orgId) { var org = db.LoadOrganizationById(orgId); var m = new API.APIOrganization(db); if (org.RegistrationTypeId == RegistrationTypeCode.ChooseVolunteerTimes) { m.SendVolunteerReminders(orgId, false); } else { m.SendEventReminders(orgId); } }
public void EmailReminders(object orgId) { using (var db2 = NewDataContext()) { var oid = orgId.ToInt(); var org = db2.LoadOrganizationById(oid); var m = new APIOrganization(db2); Util.IsInRoleEmailTest = TestEmail; if (org.RegistrationTypeId == RegistrationTypeCode.ChooseVolunteerTimes) m.SendVolunteerReminders(oid, false); else m.SendEventReminders(oid); } }
public void EmailReminders(object orgId) { var oid = orgId.ToInt(); var org = db.LoadOrganizationById(oid); var m = new API.APIOrganization(db); Util.IsInRoleEmailTest = TestEmail; if (org.RegistrationTypeId == RegistrationTypeCode.ChooseVolunteerTimes) { m.SendVolunteerReminders(oid, false); } else { m.SendEventReminders(oid); } }
public void EmailReminders(int orgId) { var org = db.LoadOrganizationById(orgId); var m = new API.APIOrganization(db); if (org.RegistrationTypeId == RegistrationTypeCode.ChooseVolunteerTimes) m.SendVolunteerReminders(orgId, false); else m.SendEventReminders(orgId); }
public ActionResult Reminders(int id, bool? emailall) { var org = DbUtil.Db.LoadOrganizationById(id); var m = new APIOrganization(DbUtil.Db); try { if (org.RegistrationTypeId == RegistrationTypeCode.ChooseVolunteerTimes) m.SendVolunteerReminders(id, emailall ?? false); else { var qid = DbUtil.Db.QueryInCurrentOrg().QueryId; m.SendEventReminders(qid); } } catch (Exception ex) { return Content(ex.Message); } return Content("ok"); }