Internet Direct (Indy)
Home
PreviousUpNext
TIdSMTPFailedRecipient Type

Event type signalled when one or more of the recipients in an email message fail during transmission using the SMTP protocol.

Pascal
TIdSMTPFailedRecipient = procedure (Sender: TObject; const AAddress, ACode, AText: String; var VContinue: Boolean) of object;
Parameters 
Description 
Sender 
Object instance generating the event notification.
 
AAddress 
Email address of the recipient that generated the event notification.
 
ACode 
SMTP response code for the exception.
 
AText 
SMTP response text for the exception.
 
VContinue 
Indicates if message transmission can continue. 

TIdSMTPFailedRecipient is an object procedure that represents an event type signalled when one or more of the recipients in an email message fail during transmission using the SMTP protocol. 

Sender is the object instance generating the event notification. 

AAddress is the email address for the recipient that generated the event notification. 

ACode is the SMTP response code for the event notification. 

AText is the SMTP response text for the event notification. 

VContinue is a variable argument that indicates if message transmission using the SMTP component can (or should) continue. Applications can set the value of VContinue in its' event handler code to control operation of the TIdSMTP component performing tranmission of the message. 

TIdSMTPFailedRecipient is the type used to implement the TIdSMTPBase.OnFailedRecipient property.

Internet Direct (Indy) version 10.1.5
Copyright © 1993-2006, Chad Z. Hower (aka Kudzu) and the Indy Pit Crew. All rights reserved.
Website http://www.indyproject.org.
Post feedback to the Indy Documentation newsgroup.