Sends the file based on all the destination information specified in the transport object.
Syntax:
Parameters:
Note that if the file name is specified then the full path name is not required. However, if specified, only the name is used and the path ignored. The path of the file that indicates where the file is located on the remote server is indicated by the TargetPath property.
Returns
Returns 1 if the operation is successful; otherwise the operation returns zero.
Example
Set oTransports = oEdiDoc.GetTransports
Set oTransport = oTransports.CreateTransport
oTransport.SetFTP
oTransport.Address = "255.255.255.255"
oTransport.Password = "YourPassword"
oTransport.User = "YourUserID"
oTransport.TargetPath = "inbound"
oTransports.Send
Samples