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
(PowerBuilder) Send HTML Email with External CSS as Related ItemDemonstrates how to compose an HTML email with an external CSS file included as a related item and referenced by CID (Content-ID).
integer li_rc oleobject loo_Mailman oleobject loo_Email oleobject loo_SbCss integer li_BCrlf string ls_FilenameInHtml string ls_ContentIdCss oleobject loo_SbHtml integer li_NumReplacements integer li_Success // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // The mailman object is used for sending and receiving email. loo_Mailman = create oleobject // Use "Chilkat_9_5_0.MailMan" for versions of Chilkat < 10.0.0 li_rc = loo_Mailman.ConnectToNewObject("Chilkat.MailMan") if li_rc < 0 then destroy loo_Mailman MessageBox("Error","Connecting to COM object failed") return end if // Use your SMTP server hostname. This example uses office365, but it could be any SMTP server.. loo_Mailman.SmtpHost = "outlook.office365.com" loo_Mailman.SmtpPort = 587 loo_Mailman.StartTLS = 1 // Set the SMTP login/password loo_Mailman.SmtpUsername = "OFFICE365-SMTP-LOGIN" loo_Mailman.SmtpPassword = "OFFICE365-SMTP-PASSWORD" // Create a new email object loo_Email = create oleobject // Use "Chilkat_9_5_0.Email" for versions of Chilkat < 10.0.0 li_rc = loo_Email.ConnectToNewObject("Chilkat.Email") loo_Email.Subject = "HTML Email with embedded CSS" loo_Email.From = "Chilkat Support <my-office365-user@mydomain.com>" loo_Email.AddTo("Chilkat Support","support@chilkatsoft.com") loo_SbCss = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbCss.ConnectToNewObject("Chilkat.StringBuilder") li_BCrlf = 1 loo_SbCss.AppendLine("body {",li_BCrlf) loo_SbCss.AppendLine(" background-color: powderblue;",li_BCrlf) loo_SbCss.AppendLine("}",li_BCrlf) loo_SbCss.AppendLine("h1 {",li_BCrlf) loo_SbCss.AppendLine(" color: blue;",li_BCrlf) loo_SbCss.AppendLine("}",li_BCrlf) loo_SbCss.AppendLine("p {",li_BCrlf) loo_SbCss.AppendLine(" color: red;",li_BCrlf) loo_SbCss.AppendLine("}",li_BCrlf) // It's possible to add a CSS file directly by calling AddRelatedFile. // This example will add the CSS from a string. ls_FilenameInHtml = "styles.css" ls_ContentIdCss = loo_Email.AddRelatedString(ls_FilenameInHtml,loo_SbCss.GetAsString(),"utf-8") if loo_Email.LastMethodSuccess <> 1 then Write-Debug loo_Email.LastErrorText destroy loo_Mailman destroy loo_Email destroy loo_SbCss return end if // The src attribute for the image tag is set to the contentIdCss: loo_SbHtml = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbHtml.ConnectToNewObject("Chilkat.StringBuilder") loo_SbHtml.AppendLine("<!DOCTYPE html>",li_BCrlf) loo_SbHtml.AppendLine("<html>",li_BCrlf) loo_SbHtml.AppendLine("<head>",li_BCrlf) loo_SbHtml.AppendLine(" <link rel=~"stylesheet~" href=~"cid:CONTENT_ID_CSS~">",li_BCrlf) loo_SbHtml.AppendLine("</head>",li_BCrlf) loo_SbHtml.AppendLine("<body>",li_BCrlf) loo_SbHtml.AppendLine("",li_BCrlf) loo_SbHtml.AppendLine("<h1>This is a heading</h1>",li_BCrlf) loo_SbHtml.AppendLine("<p>This is a paragraph.</p>",li_BCrlf) loo_SbHtml.AppendLine("",li_BCrlf) loo_SbHtml.AppendLine("</body>",li_BCrlf) loo_SbHtml.AppendLine("</html>",li_BCrlf) li_NumReplacements = loo_SbHtml.Replace("CONTENT_ID_CSS",ls_ContentIdCss) loo_Email.SetHtmlBody(loo_SbHtml.GetAsString()) li_Success = loo_Mailman.SendEmail(loo_Email) if li_Success <> 1 then Write-Debug loo_Mailman.LastErrorText else Write-Debug "Mail Sent!" end if destroy loo_Mailman destroy loo_Email destroy loo_SbCss destroy loo_SbHtml |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.