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
(PureBasic) Forward an Email using CreateForwardReads an email from an IMAP server, creates a forward version of the email using the CreateForward method, and sends the email to another recipient.
IncludeFile "CkStringBuilder.pb" IncludeFile "CkImap.pb" IncludeFile "CkEmail.pb" IncludeFile "CkMailMan.pb" Procedure ChilkatExample() ; This example requires the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. ; Read the 1st (most recent) email in an Inbox. imap.i = CkImap::ckCreate() If imap.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; Connect to an IMAP server. CkImap::setCkSsl(imap, 1) CkImap::setCkPort(imap, 993) success.i = CkImap::ckConnect(imap,"imap.someMailServer.com") If success <> 1 Debug CkImap::ckLastErrorText(imap) CkImap::ckDispose(imap) ProcedureReturn EndIf ; Login success = CkImap::ckLogin(imap,"myLogin","myPassword") If success <> 1 Debug CkImap::ckLastErrorText(imap) CkImap::ckDispose(imap) ProcedureReturn EndIf ; Select an IMAP mailbox success = CkImap::ckSelectMailbox(imap,"Inbox") If success <> 1 Debug CkImap::ckLastErrorText(imap) CkImap::ckDispose(imap) ProcedureReturn EndIf numEmails.i = CkImap::ckNumMessages(imap) ; Fetch the email at the last sequence number. ; (We are assuming the Inbox has at least 1 email) email.i = CkImap::ckFetchSingle(imap,numEmails,0) If CkImap::ckLastMethodSuccess(imap) = 0 Debug CkImap::ckLastErrorText(imap) CkImap::ckDispose(imap) ProcedureReturn EndIf ; Disconnect from the IMAP server. CkImap::ckDisconnect(imap) Debug CkEmail::ckSubject(email) eForward.i = CkEmail::ckCreateForward(email) ; The eForward email has no To or CC recipients yet. ; Add one or more.. CkEmail::ckAddTo(eForward,"Chilkat Support","support@chilkatsoft.com") ; We also need to specify the From name/address. CkEmail::setCkFromAddress(eForward, "matt@someMailServer.com") CkEmail::setCkFromName(eForward, "Matt") ; If we wish to add text at the start of the email body: sbHtmlBody.i = CkStringBuilder::ckCreate() If sbHtmlBody.i = 0 Debug "Failed to create object." ProcedureReturn EndIf If CkEmail::ckHasHtmlBody(eForward) = 1 CkStringBuilder::ckAppend(sbHtmlBody,CkEmail::ckGetHtmlBody(eForward)) CkStringBuilder::ckPrepend(sbHtmlBody,"<p>Hello, this is an email I'm forwarding to you...</p>") CkEmail::ckSetHtmlBody(eForward,CkStringBuilder::ckGetAsString(sbHtmlBody)) EndIf sbPtBody.i = CkStringBuilder::ckCreate() If sbPtBody.i = 0 Debug "Failed to create object." ProcedureReturn EndIf If CkEmail::ckHasPlainTextBody(eForward) = 1 CkStringBuilder::ckAppend(sbPtBody,CkEmail::ckGetPlainTextBody(eForward)) CkStringBuilder::ckPrepend(sbPtBody,"Hello, this is an email I'm forwarding to you..." + Chr(13) + Chr(10) + Chr(13) + Chr(10)) CkEmail::ckSetTextBody(eForward,CkStringBuilder::ckGetAsString(sbPtBody),"text/plain") EndIf ; We could save the .eml, then double-click on it to view in our mail program, such as Outlook or Thunderbird.. CkEmail::ckSaveEml(eForward,"qa_output/forward.eml") ; We could send (forward) the email.. mailman.i = CkMailMan::ckCreate() If mailman.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkMailMan::setCkSmtpHost(mailman, "smtp.someMailServer.com") CkMailMan::setCkSmtpUsername(mailman, "myLogin") CkMailMan::setCkSmtpPassword(mailman, "myPassword") CkMailMan::setCkSmtpPort(mailman, 587) CkMailMan::setCkStartTLS(mailman, 1) success = CkMailMan::ckSendEmail(mailman,eForward) If success <> 1 Debug CkMailMan::ckLastErrorText(mailman) CkImap::ckDispose(imap) CkStringBuilder::ckDispose(sbHtmlBody) CkStringBuilder::ckDispose(sbPtBody) CkMailMan::ckDispose(mailman) ProcedureReturn EndIf success = CkMailMan::ckCloseSmtpConnection(mailman) If success <> 1 Debug "Connection to SMTP server not closed cleanly." EndIf Debug "Mail Sent!" CkEmail::ckDispose(eForward) CkEmail::ckDispose(email) CkImap::ckDispose(imap) CkStringBuilder::ckDispose(sbHtmlBody) CkStringBuilder::ckDispose(sbPtBody) CkMailMan::ckDispose(mailman) ProcedureReturn EndProcedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.