Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Visual FoxPro) Send Email and Save Copy to "Sent" MailboxSends an email and places a copy in the "Sent" mailbox on an IMAP server. This example demonstrates how to send an email and then upload a copy to an IMAP mail server's "Sent" mailbox. Note: You may need to create a "Sent" mailbox on your IMAP server prior to running this example. You may already have a mailbox named something different -- perhaps "Sent Items". Important: If your mail server is POP3, the "Sent Items" mailbox is actually a file on your local computer managed by your email client, such as Outlook, Mozilla Thunderbird. This example does not save emails to Outlook or Mozilla Thunderbird "Sent Items" local files.
LOCAL loChilkatGlob LOCAL lnSuccess LOCAL loMailman LOCAL lnSuccess LOCAL loEmail LOCAL loImap * Starting in v9.5.0.49, all Chilkat classes can be unlocked at once at the beginning of a program * by calling UnlockBundle. It requires a Bundle unlock code. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Global') loChilkatGlob = CreateObject('Chilkat.Global') lnSuccess = loChilkatGlob.UnlockBundle("Anything for 30-day trial.") IF (lnSuccess <> 1) THEN ? loChilkatGlob.LastErrorText RELEASE loChilkatGlob CANCEL ENDIF * The mailman object is used for sending (SMTP) and receiving (POP3) email. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.MailMan') loMailman = CreateObject('Chilkat.MailMan') * Set the SMTP server. loMailman.SmtpHost = "mail.mydomain.com" loMailman.SmtpUsername = "myLogin" loMailman.SmtpPassword = "myPassword" * Create a new email object * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Email') loEmail = CreateObject('Chilkat.Email') loEmail.Subject = "This is a test" loEmail.Body = "This is a test" loEmail.From = "Myself <myself@mydomain.com>" lnSuccess = loEmail.AddTo("Somebody","somebody@somedomain.com") lnSuccess = loMailman.SendEmail(loEmail) IF (lnSuccess <> 1) THEN ? loMailman.LastErrorText RELEASE loChilkatGlob RELEASE loMailman RELEASE loEmail CANCEL ENDIF ? "Mail Sent!" * Now use Chilkat IMAP to save the email to Inbox.Sent * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Imap') loImap = CreateObject('Chilkat.Imap') * Connect to an IMAP server. * Use TLS loImap.Ssl = 1 loImap.Port = 993 lnSuccess = loImap.Connect("mail.mydomain.com") IF (lnSuccess <> 1) THEN ? loImap.LastErrorText RELEASE loChilkatGlob RELEASE loMailman RELEASE loEmail RELEASE loImap CANCEL ENDIF * Login lnSuccess = loImap.Login("myLogin","myPassword") IF (lnSuccess <> 1) THEN ? loImap.LastErrorText RELEASE loChilkatGlob RELEASE loMailman RELEASE loEmail RELEASE loImap CANCEL ENDIF * The AppendMail method uploads an email to an IMAP server * and saves it in the mailbox specified: lnSuccess = loImap.AppendMail("Inbox.Sent",loEmail) IF (lnSuccess <> 1) THEN ? loImap.LastErrorText RELEASE loChilkatGlob RELEASE loMailman RELEASE loEmail RELEASE loImap CANCEL ENDIF ? "Mail saved to Inbox.Sent" RELEASE loChilkatGlob RELEASE loMailman RELEASE loEmail RELEASE loImap |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.