Framework EDI Reference. Methods and Properties
ediTransport. Address

Sets or gets the destination address.

Syntax:

Remarks

The Address property is used to specify the destination where the file should be sent.  This can be an IP address (FTP) or an email address (SMTP) or web site (HTTP) depending on the transport method.

Example

Set oTransport = oTransports.CreateTransport
oTransport.SetSMTP
oTransport.Address = "name@domain.com"
oTransport.DisplayName = "Your name"
oTransport.Message = "Please see EDI file"
oTransport.Subject = "EDI file"
oTransports.Send

Samples