Esempio n. 1
0
        private void NotifyBothOldAndNewEmailAddressesThatEmailAddressHasBeenChanged(string oldEmailAddress, string newEmailAddress)
        {
            // send to old email
            emailSendingService.SendChangeEmailCompletedNotificationEmail(oldEmailAddress);

            // send to new email
            emailSendingService.SendChangeEmailCompletedVerificationEmail(newEmailAddress);
        }