Hi,
From your description, you want to create a custom application to email the SSRS report, but the Standard Edition don't support Data-Driven Subscriptions.
If so, we can export the SSRS report into PDF file or other forms, then create a ASP.NET web application to send email which attachs the aboved PDF file.
For more information about "Sending Email with ASP.NET", please refer to
http://www.aspheute.com/english/20000918.asp
As for how to export the SSRS report into PDF without showing it in the web page, we can use the following code.
Microsoft.Reporting.WebForms.ReportViewer rview = new Microsoft.Reporting.WebForms.ReportViewer();
rview.ServerReport.ReportServerUrl = new Uri("http://localhost:8080/ReportServer");
rview.ServerReport.ReportPath = "/Adventure Works/Report1";
string mimeType, encoding, extension;
string[] streamids;Microsoft.Reporting.WebForms.Warning[] warnings;
string format = "PDF";
byte[] bytes = rview.ServerReport.Render(format, "", out mimeType, out encoding, out extension, out streamids, out warnings);
//save the pdf byte to the folder
FileStream fs = new FileStream(Server.MapPath("report.pdf"), FileMode.Open);
byte[] data = new byte[fs.Length];
fs.Write(bytes, 0, bytes.Length);
fs.Close();
Please feel free to let me know if I’ve misunderstood anything.