| All wodCrypt (12) wodSSH (10) wodSFTP (23) wodSSHServer (1) wodSSHTunnel (11) wodSSHpackage wodSFTPdll wodSSH.NET (10) wodSFTP.NET (24) wodFtpDLX.NET (22) wodWebServer.NET (10) wodAppUpdate (13) wodHttpDLX (8) wodFtpDLX (22) wodTelnetDLX wodFTPServer (3) wodWebServer (10) wodVPN wodXMPP (13) | All ** [Visual Basic] ** [C#] ** [VB.NET] ** Add new message to mailbox VB code
 Dim wodMailBox1 As wodMailboxCom Set wodMailBox1 = New wodMailboxCom 'First we need to open mailbox using FileName Property. wodMailBox1.FileName = "c:\mbox" wodMailBox1.Lock 'Using Add method we will add new message to collection of the messages in the mailbox. wodMailBox1.Messages.Add ("c:\message1.eml") 'Finally we will update mailbox with new message using Update Method. wodMailBox1.Update VB.NET code
 Dim wodMailBox1 As WODMAILBOXCOMLib.wodMailboxCom wodMailBox1 = New WODMAILBOXCOMLib.wodMailboxCom 'First we need to open mailbox using FileName Property. wodMailBox1.FileName = "c:\mbox" wodMailBox1.Lock() 'Using Add method we will add new message to collection of the messages in the mailbox. wodMailBox1.Messages.Add("c:\message1.eml") 'Finally we will update mailbox with new message using Update Method. wodMailBox1.Update() C# code
 WODMAILBOXCOMLib.wodMailboxCom wodMailBox1; wodMailBox1 = new WODMAILBOXCOMLib.wodMailboxCom(); //First we need to open mailbox using FileName Property. wodMailBox1.Filename = "c:\\mbox"; wodMailBox1.Lock(); //Using Add method we will add new message to collection of the messages in the mailbox. wodMailBox1.Messages.Add("c:\\message1.eml"); //Finally we will update mailbox with new message using Update Method. wodMailBox1.Update(); |