예제 #1
0
        private async Task EmailPrimary(CCA cca)
        {
            try
            {
                var primaryUsers = await db.PrimaryUsers.Where(m => m.EnrollmentLocationID == cca.EnrollmentLocationID).ToListAsync();
                if (primaryUsers.Count != 0)
                {
                    foreach (var user in primaryUsers)
                    {
                        var initial = cca.Student.StudentFirstName[0];
                        IdentityMessage msg = new IdentityMessage();
                        msg.Destination = user.Email;
                        msg.Subject = "SEOP Application Received.";
                        msg.Body = "<p>Dear Primary Representative or Business Administrator,</p> <p>One or more enrollment requests have been submitted on behalf of a student enrolled in your district for this lea year. The student is:<p>" + initial + ". " + cca.Student.StudentLastName + "</p><p> The student is limited to 5.0 online credits in the 2015-16 lea year, and 6.0 credits thereafter, unless you wish to allow the student to exceed this value.</p><p>State Board of Education Administrative Rule requires that a counselor designated by the primary lea of enrollment shall review the CCA to ensure consistency with graduation requirements, IEP and IB program participation, if applicable. Statute allows 72 business hours from sending of this notice by USOE that an enrollment request is pending for your review, prior to execution of an enrollment request by USOE. At that point, the student is considered to be enrolled if they have been accepted by the Provider, and you have either approved the enrollment, or failed to disapprove the enrollment on statutory bases.</p><p>To facilitate Counselor review, the student’s assigned Counselor has been similarly notified that an enrollment request is pending.  The Counselor is expected to log in to certify that the course is consistent with the student’s College and Career Ready Planning (SEOP/CCRP), IEP, and IB participation, which will aid in your own evaluation of the request.</p><p>Please go to https://seats.schools.utah.gov/ and log in to see the application.  If you do not have an account please register as a \"Primary\" and wait for approval from the SEOP administrator.</p><p>For questions you are welcome to contact us at 801.538.7660 or [email protected].</p><p> Thank you for your assistance.</p><p>With Best Wishes,</p><p>EdOnline.</p>";

                        EmailService emailService = new EmailService();
                        await emailService.SendAsync(msg).ConfigureAwait(false);
                    }
                }
                else // Email admin if no primary user found
                {
                    var initial = cca.Student.StudentFirstName[0];
                    var userManager = HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();
                    var adminRole = await db.Roles.Where(m => m.Name == "Admin").Select(m => m.Id).FirstOrDefaultAsync().ConfigureAwait(false);
                    var admin = await db.Users.FirstOrDefaultAsync(m => m.Roles.Select(r => r.RoleId).Contains(adminRole)).ConfigureAwait(false);
                    var school = await cactus.CactusInstitutions.FirstOrDefaultAsync(m => m.ID == cca.EnrollmentLocationID).ConfigureAwait(false);
                    await userManager.SendEmailAsync(admin.Id, "NO PRIMARY USER FOUND!", "EDONLINE, A new application for SOEP has been received from <p>" + initial + ". " + cca.Student.StudentLastName + " Email:" + cca.Student.StudentEmail + "</p><p>But a Primary user was not found for " + school + "</p>");
                }
            }
            catch
            {
                throw;
            }

        }
예제 #2
0
        private async Task EmailParent(CCA cca)
        {
            try
            {
                IdentityMessage msg = new IdentityMessage();

                var parent = await db.Parents.FindAsync(cca.Student.ParentID).ConfigureAwait(false);

                msg.Destination = parent.GuardianEmail;
                msg.Subject = "SEOP Application Received.";
                msg.Body = "<p>Dear Parent or Guardian,</p> <p>An \"Enrollment Request\" for online enrollment in a course taught by a lea district or charter lea outside of your primary lea district or charter lea has been filed with the Utah State Office of Education (USOE) for your child.  WITHIN APPROXIMATELY 72 BUSINESS HOURS (approximately 10 business days), YOU CAN EXPECT TO RECEIVE A NOTICE OF ENROLLMENT or REJECTION THIS STUDENT. If you have any questions in this period, please feel free to contact USOE as below.</p> <p>Please call us at 801.538.7660 with any questions.</p>On behalf of the Utah State Office of Education, we thank you for your assistance. </p><p>E-Mail:				[email protected] </p><p>Tel.: 801.538.7660.</p><p>More information can be found at https://seats.schools.utah.gov/ </p>";

                EmailService emailService = new EmailService();
                await emailService.SendAsync(msg).ConfigureAwait(false);
            }
            catch
            {
                throw;
            }

        }
예제 #3
0
        private async Task EmailCounselor(CCA cca)
        {
            try
            {
                IdentityMessage msg = new IdentityMessage();

                var counselor = await db.Counselors.FindAsync(cca.CounselorID);
                var initial = cca.Student.StudentFirstName[0];
                msg.Destination = counselor.Email;
                msg.Subject = "SEOP Application Received.";
                msg.Body = "<p>Dear Counselor,</p> <p>One or more enrollment requests have been submitted on behalf of a student enrolled in your district for this lea year. The student is:<p>First Name: " + initial + ".</p><p> Last Name: " + cca.Student.StudentLastName + "</p><p>State Board of Education Administrative Rule requires that a counselor designated by the primary lea of enrollment shall review the CCA to ensure consistency with graduation requirements, IEP and IB program participation, if applicable.</p><p>To facilitate Counselor review, the Counselor is expected to log in to certify that the course is consistent with the student’s College and Career Ready Planning (SEOP/CCRP), IEP, and IB participation, which will aid your LEA’s approving official (usually the Business Administrator) in their acceptance of this Acknowledgement.</p><p>Please go to https://seats.schools.utah.gov/ and log in to see the application.  If you do not have an account please register as a \"Counselor\" and wait for approval from the SEOP administrator.</p><p>For questions you are welcome to contact us at 801.538.7660 or [email protected].</p><p> Thank you for your assistance.</p><p>With Best Wishes,</p><p>EdOnline. http://www.schools.utah.gov/edonline/default.aspx </p>";

                EmailService emailService = new EmailService();
                await emailService.SendAsync(msg).ConfigureAwait(false);
            }
            catch
            {
                throw;
            }

        }
예제 #4
0
        private async Task EmailProvider(CCA cca)
        {
            try
            {
                IdentityMessage msg = new IdentityMessage();
                var provider = await db.Providers.FindAsync(cca.ProviderID).ConfigureAwait(false);
                msg.Destination = provider.Email;
                msg.Subject = "Enrollment Request for Provider Review";
                var initial = cca.Student.StudentFirstName[0];
                msg.Body = "<p>USOE has received a CCA for " + initial + ". " + cca.Student.StudentLastName + ", who wishes to enroll in a course under the Statewide Online Education Program.</p> <p> Please review this CCA within 72 Business Hours.  https://seats.schools.utah.gov/ </p><p>1. Login.</p><p>1. Click the edit button for that student.</p>";

                EmailService emailService = new EmailService();
                await emailService.SendAsync(msg).ConfigureAwait(false);
            }
            catch
            {
                throw;
            }

        }