Shipping Integrator V5 - Online Help
Shipping Integrator V5
Questions / Feedback?

Notify Property

Collection of e-mail notifications to be sent.

Syntax

[VB.NET]
Public Property Notify As NotifyDetailList

[C#]
public NotifyDetailList Notify {get;}

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.

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: RecipientType, Email, and Name tied to it. The only valid recipient types for USPS are rtRecipient and rtShipper.

For instance, if only one notification is requested to be sent:


component.Notify[0].Email = "test@test.com";
component.Notify[0].RecipientType = rtShipper;
component.Notify[0].Name = "My Name";

This property is not available at design time.

Default Value

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 5.0.6240.0