Merge pull request #625 from mikecasas/feature-email
Send notification based on a future datetime
This commit is contained in:
		| @ -65,7 +65,8 @@ | ||||
|                 notification.ParentId = null; | ||||
|                 notification.CreatedOn = DateTime.UtcNow; | ||||
|                 notification.IsDelivered = false; | ||||
|                 notification.DeliveredOn = null; | ||||
|                 notification.DeliveredOn = null; | ||||
|                 notification.SendOn = DateTime.UtcNow; | ||||
|                 notification = await NotificationService.AddNotificationAsync(notification); | ||||
|                 await logger.LogInformation("Notification Created {Notification}", notification); | ||||
|                 NavigationManager.NavigateTo(NavigateUrl()); | ||||
|  | ||||
| @ -191,7 +191,8 @@ | ||||
|                 notification.ParentId = notificationid; | ||||
|                 notification.CreatedOn = DateTime.UtcNow; | ||||
|                 notification.IsDelivered = false; | ||||
|                 notification.DeliveredOn = null; | ||||
|                 notification.DeliveredOn = null; | ||||
|                 notification.SendOn = DateTime.UtcNow; | ||||
|                 notification = await NotificationService.AddNotificationAsync(notification); | ||||
|                 await logger.LogInformation("Notification Created {Notification}", notification); | ||||
|                 NavigationManager.NavigateTo(NavigateUrl()); | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shaun Walker
					Shaun Walker