Search the Wiki

Viewing 13 to 15 of 406 items

OAuth2 Overview

The OAuth2 (OAuth 2.0) Framework allows third party applications temporary access to a web service account owned by the end-user without the need for the host application to obtain or store login information. Generally speaking, a web service refers to an on-line application which provides a public API to access its functionality. Examples are web  Full Article…

Comments Off on OAuth2 Overview

How To…Digitally Sign a PDF

Digitally Sign a PDF from Within ReportBuilder ReportBuilder 21+ includes support for automatically signing an exported PDF document with a valid digital certificate (signature). Background: The PDF file format supports the use of Digital Signatures to ensure a file has not been altered before it is received/viewed. The PDF document can be “signed” using a  Full Article…

Comments Off on How To…Digitally Sign a PDF

How To… Show Email Status

Question “Is there a way to show the status of a sent email” Solution Use the TppSMTPCustom.OnStatusChange event to retrieve various status updates from your email server or MAPI compatible email client.  This event can be accessed from the TppReport object by typecasting the TppReport.Email object as TppEmail. Sample Delphi code: procedure TForm1.Button1Click(Sender: TObject); begin TppEmail(ppReport1.Email).SMTP.OnStatusChange := EmailStatusEvent;  Full Article…

Comments Off on How To… Show Email Status