Examples

Top  Previous  Next

Some examples:

 

// Add userName and Password fields to the sending HTML page.

procedure MyCustomFields(EurekaExceptionRecord: TEurekaExceptionRecord; WebFields: TStrings);

begin

   // First HTTP field (UserName)...

   WebFields.Add('UserName=MyUserName');

 

   // Second HTTP field (Password)...

   WebFields.Add('Password=xyz');

end;

 

 

// Add the User Email field to the sending HTML page.

procedure MyCustomFields(EurekaExceptionRecord: TEurekaExceptionRecord; FieldsName, FieldsValue: TStrings);

begin

   WebFields.Add('Email=myemail@email.com');

end;