Sets or gets the password.
Syntax:
Remarks
The Password property is used as the login password in conjunction with the login ID for proper authentication when transporting a file using FTP or HTTP.
Example
Set oTransport = oTransports.CreateTransport
oTransport.SetFTP ' FTP
oTransport.Address = "www.yourdomain.com"
oTransport.TargetPath = "folderpath"
oTransport.Password = "YourUserID"
oTransport.User = "YourPassword"
oTransports.Send
Samples