Нечто из применения для StiMvcViewerFx: - но ничего не происходит...
Код: Выделить всё
public virtual ActionResult ActionEmailReport()
{
// Return the exported report file
StiReport report = StiMvcViewer.GetReportObject(this.HttpContext);
StiEmailOptions option = new StiEmailOptions();
option.AddressFrom = "fromUser@outlook.com";
option.UserName = "admin@mymaildoman.com";
option.AddressTo = "user@mail.ru";
option.Host = "mail.ru";
option.Password = "*****";
option.Subject = "Вы запросили отчет...";
option.Body = "Ваш отчет";
return StiMvcViewer.EmailReportResult(this.HttpContext, report, option);
}