![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Node.js) Example: MailMan.RenderToMime methodDemonstrates the
var os = require('os'); if (os.platform() == 'win32') { var chilkat = require('@chilkat/ck-node23-win64'); } else if (os.platform() == 'linux') { if (os.arch() == 'arm') { var chilkat = require('@chilkat/ck-node23-linux-arm'); } else if (os.arch() == 'arm64') { var chilkat = require('@chilkat/ck-node23-linux-arm64'); } else { var chilkat = require('@chilkat/ck-node23-linux-x64'); } } else if (os.platform() == 'darwin') { var chilkat = require('@chilkat/ck-node23-mac-universal'); } function chilkatExample() { // Create a simple email var email = new chilkat.Email(); email.Subject = "This is a test"; email.Body = "This is a test"; email.From = "Joe <joe@example.com>"; email.AddTo("Mary","mary@example2.com"); var mailman = new chilkat.MailMan(); // See the exact MIME of the email that would be sent // if your application called SendEmail and passed in the email object. var renderedMime = mailman.RenderToMime(email); console.log(renderedMime); // For this example, the rendered MIME looks like this: // MIME-Version: 1.0 // Date: Fri, 27 Feb 2026 06:55:44 -0600 // Message-ID: <E4369AE94DE6CD7D08D4F15D95937F2A7FFC95E8@CHILKAT25> // Content-Type: text/plain; charset=us-ascii; format=flowed // Content-Transfer-Encoding: 7bit // X-Priority: 3 (Normal) // Subject: This is a test // From: Joe <joe@example.com> // To: Mary <mary@example2.com> // // This is a test } chilkatExample(); |
||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.