SendVolunteerReminders() public method

public SendVolunteerReminders ( int id, bool sendall ) : void
id int
sendall bool
return void
示例#1
0
        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);
            }
        }
示例#2
0
文件: Email.cs 项目: GSBCfamily/bvcms
 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);
     }
 }
示例#3
0
        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);
            }
        }
示例#4
0
 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);
 }
示例#5
0
 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");
 }