Focal Point
[CLOSED] emailing reports from .NET application

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/240101943

January 22, 2010, 02:34 PM
Donald
[CLOSED] emailing reports from .NET application
In C# .NET we would need to be able to run a report and save it on the server as a PDF document and then we would attach that PDF in an email we send. Has anyone done this or could anyone tell me the best approach to doing this.

This message has been edited. Last edited by: Kerry,


Prod: WebFocus 7.7.3 Win 2003
Dev: WebFocus 7.7.3 Win 2003
January 22, 2010, 03:07 PM
marnixR
try the following:

using System.Web.Mail;


amongst the usings, and then in the body:

MailMessage mail = new MailMessage();
mail.To = "me@mycompany.com";
mail.From = "you@yourcompany.com";
mail.Subject = "this is the e-mail title";
mail.Body = "this is the e-mail body";
MailAttachment attachment = new MailAttachment( Server.MapPath( "test.pdf" ) ); //create the attachment
mail.Attachments.Add( attachment );						//add the attachment
SmtpMail.SmtpServer = "real.server.name.com";
SmtpMail.Send( mail );





WebFocus 7.6.5 - Windows XP - admin of http://thescienceforum.org/ and Philosophorum
January 25, 2010, 02:35 AM
Tony A
This is really a C# .net question and really ought to be targetted at an appropriate forum.

However, an alternative might be CDONTS - a bit archaic but it works.

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
January 25, 2010, 04:32 AM
Efrem
This is standard functionality when using ReportCaster with ReportCaster Web Services.

I'm not sure if you're currently using ReportCaster.

ReportCaster Web Services is licensed under the WebFOCUS Web Services Enablement option.

I just tried it from a VB.NET application.
It works like a charm.
C# should work exactly the same.