Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
var options = new StiAngularViewerOptions();
options.Toolbar.ShowSendEmailButton = true;
return StiAngularViewer.ViewerDataResult(requestParams, options);EmailReport action. Retrieve the prepared e-mail options and fill in the SMTP settings of your mail server:[HttpPost]
public IActionResult EmailReport()
{
StiEmailOptions options = StiAngularViewer.GetEmailOptions(this);
// Recipient, subject and body come from the viewer and can be adjusted here
// options.AddressTo = "";
// options.Subject = "";
// Your mail server settings
options.AddressFrom = "admin_address@test.com";
options.Host = "smtp.test.com";
options.Port = 465;
options.UserName = "admin_address@test.com";
options.Password = "admin_password";
return StiAngularViewer.EmailReportResult(this, options);
}StiEmailOptions object returned by GetEmailOptions already holds the recipient, subject and the exported attachment prepared by the viewer; you only supply the server-side delivery details. EmailReportResult then sends the message and reports the result back to the viewer.