Notify Property
Collection of e-mail notifications to be sent.
Syntax
public NotifyDetailList getNotify(); public void setNotify( notify);
Remarks
The Notify is optional to be provided in a ship request. This should be set only if the shipper wants to send e-mail notifications on shipment status, exceptions, and/or delivery status. Up to 3 notification requests can be made within a ship request.
For each idx = 0 to NotifyCount - 1 (where NotifyCount<=2), this must be set to an instance of the NotifyDetail type, which will contain specific information about the notification to be e-mailed. See the NotifyDetail type for more information.
Each notification has a: NotificationFlags (required), Email (required), Message (optional) tied to it.
For instance, if only one notification is requested to be sent:
component.Notify[0].Email = "test@test.com"; component.Notify[0].NotificationFlags = 0x00000001; // On Shipment component.Notify[0].Message = "test";
This property is not available at design time.