public async Task <NotificationDto> SendNotificationAsync(NotificationDto notification)
        {
            _emailMessage.Content = notification.Content;
            _emailMessage.Subject = $"{_testEmailIndicator}{_appName} {notification.NotificationType}";
            await _mailerClient.SendMailAsync(_emailMessage);

            return(notification);
        }