function SendToExceptionless(const AUsername, APassword, AProjectName, AMsg, ASource: string): boolean;


This function sends a message to an Exceptionless (cloud service) project.
 
Parameters

aUsername

Your Exceptionless username

aPassword

Your Exceptionless password

aProjectName

The Exceptionless project name to send the message to

aMsg

The actual message to be sent to Exceptionless

aSource

The source of the message

 
Return value

True

The message was successfully posted to Exceptionless

False

Error while posting the message; the message was not posted

 
Example


// The following example posts a message to an Exceptionless project
begin
  SendToExceptionless('4f83y7', '3f74y37', 'MyProject', 'There was an exception', 'MyProgram.exe');
end.