Tcl
Tcl
Send Email using office365 SMTP
Demonstrates how to send an email using Office365.Chilkat Tcl Downloads
load ./chilkat.dll
set success 0
# 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.
set mailman [new_CkMailMan]
# Set the SMTP server to Office365's SMTP server.
# Note: Please be sure to double-check the SMTP settings
# with your provider or with the official Office365 documentation
# provided by Microsoft. The required settings could change...
CkMailMan_put_SmtpHost $mailman "smtp.office365.com"
CkMailMan_put_SmtpPort $mailman 587
CkMailMan_put_StartTLS $mailman 1
# Set the SMTP login/password
CkMailMan_put_SmtpUsername $mailman "OFFICE365_USERNAME"
CkMailMan_put_SmtpPassword $mailman "OFFICE365_PASSWORD"
# Create a new email object
set email [new_CkEmail]
CkEmail_put_Subject $email "This is a test"
CkEmail_put_Body $email "This is a test"
CkEmail_put_From $email "My Name <my_office365_email@example.com>"
set success [CkEmail_AddTo $email "Chilkat Admin" "admin@chilkatsoft.com"]
# Call SendEmail to connect to the SMTP server and send.
# The connection (i.e. session) to the SMTP server remains
# open so that subsequent SendEmail calls may use the
# same connection.
set success [CkMailMan_SendEmail $mailman $email]
if {$success != 1} then {
puts [CkMailMan_lastErrorText $mailman]
delete_CkMailMan $mailman
delete_CkEmail $email
exit
}
set success [CkMailMan_CloseSmtpConnection $mailman]
if {$success != 1} then {
puts "Connection to SMTP server not closed cleanly."
}
puts "Mail Sent!"
delete_CkMailMan $mailman
delete_CkEmail $email