Chilkat Examples

ChilkatHOMEAndroid™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi DLLGoJavaNode.jsObjective-CPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwiftTclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Xojo Plugin Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Apple Keychain
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Cloud Signature CSC
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text

HTTP
HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
Secrets
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(Xojo Plugin) Send Encrypted Email using Certificate in Apple Keychain

See more Apple Keychain Examples

Send encrypted (S/MIME) email using a certificate found in the Apple Keychain.

Note: This example requires Chilkat v10.1.2 or later.

Chilkat Xojo Plugin Download

Xojo Plugin for Windows, Linux, Mac OS X, and ARM, ARM64

Dim email As New Chilkat.Email
email.Subject = "This email is encrypted"
email.Body = "This is a S/MIME encrypted mail"
email.From = "Joe <joe@example.com>"

// Emails are encrypted using the recipient's certificate.
Dim recipientEmailAddr As String
recipientEmailAddr = "jane@example2.com"
Dim success As Boolean
success = email.AddTo("",recipientEmailAddr)

// Indicate that the email is to be sent encrypted.
email.SendEncrypted = True

Dim cert As New Chilkat.Cert

// -----------------------------------------------
// This example requires Chilkat v10.1.2 or later.
// -----------------------------------------------

// The recipient's certificate is used to encrypt.
// This will load the certificate from the Apple Keychain.
Dim success As Boolean
success = cert.LoadByEmailAddress(recipientEmailAddr)
If (success <> True) Then
    System.DebugLog(cert.LastErrorText)
    Return
End If

// Specify the certificate to be used for encryption.
success = email.SetEncryptCert(cert)
email.SendEncrypted = True

Dim mailman As New Chilkat.MailMan
mailman.SmtpHost = "smtp.example.com"
mailman.SmtpUsername = "joe@example.com"
mailman.SmtpPort = 587
mailman.StartTLS = True

// We'll get the SMTP password from the Apple Keychain.
// See how we originally saved the email credentials to the Keychain here:
// Save Email Credentials in Apple Keychain or Windows Credentials Manager
Dim secrets As New Chilkat.Secrets

// On Windows, this is the Windows Credentials Manager
// On MacOS/iOS, it is the Apple Keychain
secrets.Location = "local_manager"

// Specify the name of the secret.
// service and username are required.
// appName and domain are optional.
// Note: The values are arbitrary and can be anything you want.
Dim json As New Chilkat.JsonObject
success = json.UpdateString("appName","MyEmailApp")
success = json.UpdateString("service","SMTP")
success = json.UpdateString("domain","example.com")
success = json.UpdateString("username","joe@example.com")

mailman.SmtpPassword = secrets.GetSecretStr(json)

// Send the encrypted email.
// The email is encrypted and sent within the SendEmail function.
success = mailman.SendEmail(email)
If (success <> True) Then
    System.DebugLog(mailman.LastErrorText)
    Return
End If

System.DebugLog("Encrypted email sent!")

 

© 2000-2025 Chilkat Software, Inc. All Rights Reserved.