public async Task ExportForecast(ExportRequestBody requestBody)
 {
     var chartUrls = _chartService.GetChartUrl(await _databaseAccessService.GetForecastAsync(requestBody.RevenueForecastId));
     var message   = GetHtmlMessage(await chartUrls, requestBody);
     await _mailingService.SendMessageAsync(await message, requestBody.Email);
 }