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
(Delphi DLL) Send HTML Email with Image Downloaded from URLDemonstrates how to compose an HTML email with an embedded image where the image data is downloaded from a URL.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Http, BinData, Email, MailMan; ... procedure TForm1.Button1Click(Sender: TObject); var bdJpg: HCkBinData; http: HCkHttp; success: Boolean; mailman: HCkMailMan; email: HCkEmail; html: PWideChar; begin // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // First download the image we'll be adding to the HTML "img" tag. bdJpg := CkBinData_Create(); http := CkHttp_Create(); success := CkHttp_QuickGetBd(http,'https://www.chilkatsoft.com/images/starfish.jpg',bdJpg); if (success = False) then begin Memo1.Lines.Add(CkHttp__lastErrorText(http)); Exit; end; mailman := CkMailMan_Create(); // Use your SMTP server.. CkMailMan_putSmtpHost(mailman,'smtp.yourserver.com'); CkMailMan_putSmtpPort(mailman,587); CkMailMan_putStartTLS(mailman,True); // Set the SMTP login/password CkMailMan_putSmtpUsername(mailman,'my_login'); CkMailMan_putSmtpPassword(mailman,'my_password'); // Create an HTML email. email := CkEmail_Create(); CkEmail_putSubject(email,'HTML Email with Image'); CkEmail_putFrom(email,'Dave <somebody@mydomain.com>'); CkEmail_AddTo(email,'Chilkat','info@chilkatsoft.com'); html := '<html><body><p>This is an HTML email with an embedded image.</p><p><img src="starfish.jpg" /></p></body></html>'; CkEmail_SetHtmlBody(email,html); // Note: The "starfish.jpg" here must match the name in the "img" tag's "src" attribute in the HTML above. success := CkEmail_AddRelatedBd2(email,bdJpg,'starfish.jpg'); if (success = False) then begin Memo1.Lines.Add(CkEmail__lastErrorText(email)); Exit; end; CkEmail_SaveEml(email,'qa_output/out.eml'); // success = mailman.SendEmail(email); // if (success == ckfalse) { // println mailman.LastErrorText; // return; // } // // ignore = mailman.CloseSmtpConnection(); Memo1.Lines.Add('Success.'); CkBinData_Dispose(bdJpg); CkHttp_Dispose(http); CkMailMan_Dispose(mailman); CkEmail_Dispose(email); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.