Esempio n. 1
0
        public async Task<NotificationResult> SendResetPasswordLinkAsync(ApplicationUser user, string url)
        {
            logger.Trace("Entering SendResetPasswordLinkAsync");
            logger.Trace("User = {0}", user.Email);
            logger.Trace("Link = {0}", url);

            logger.Error("NOTIFICATION SERVICE NOT IMPLEMENTED YET = SEND FAILED");
            var result = new NotificationResult
            {
                Successful = false,
                Error = "Not Implemented"
            };
            return await Task.FromResult(result);
        }
Esempio n. 2
0
        public async Task <NotificationResult> SendResetPasswordLinkAsync(ApplicationUser user, string url)
        {
            logger.Trace("Entering SendResetPasswordLinkAsync");
            logger.Trace("User = {0}", user.Email);
            logger.Trace("Link = {0}", url);

            logger.Error("NOTIFICATION SERVICE NOT IMPLEMENTED YET = SEND FAILED");
            var result = new NotificationResult
            {
                Successful = false,
                Error      = "Not Implemented"
            };

            return(await Task.FromResult(result));
        }