Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] emailing reports from .NET application

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] emailing reports from .NET application
 Login/Join
 
Platinum Member
posted
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
 
Posts: 116 | Registered: April 23, 2007Report This Post
Silver Member
posted Hide Post
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
 
Posts: 30 | Location: Port Talbot | Registered: November 09, 2006Report This Post
Expert
posted Hide Post
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 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Platinum Member
posted Hide Post
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.
 
Posts: 229 | Location: New York | Registered: July 27, 2004Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] emailing reports from .NET application

Copyright © 1996-2020 Information Builders