Quicklinks
ActiveEmail SMTP E-mail Toolkit 2.3 is the newest version of the ActiveXperts ActiveEmail product.
Version 2.3 is a small feature update of version 2.2.
The mission of the product is to provide an easy-to-use programming interface to SMTP email communications.
The product runs on the Windows 2003/XP/2000/NT/98 platforms.
IMPORTANT: EXISTING USERS OF ACTIVEEMAIL MUST MAKE A SMALL MODIFICATION TO THEIR APPLICATIONS OR SCRIPTS TO MAKE USE OF THE NEW 2.3 VERSION (see below).
Existing users must implement the new Connect and Disconnect functions in order to use ActiveEmail 2.3.
Existing users must also eliminate the HostName, AccountName and AccountPassword properties; these properties are now implemented as parameters of Connect.
The following samples demonstrate how to convert your code from 2.2 to 2.3:
' = ActiveEmail 2.2 sample = Set objSmtp = CreateObject("ActiveEmail.EMailMessage") objSmtp.HostName = "smtp.myserver.com" objSmtp.AccountName = "MyLogin" objSmtp.AccountPassword = "MyPassword" objSmtp.FromAddress = "myname@mycompany.com" objSmtp.FromName = "My Name" objSmtp.AddTo "roger@thecompany.com", "My friend Roger" objSmtp.Subject = "Simple E-mail" objSmtp.Body = "Hello my friend"" objSmtp.Send ' Send will internally connect, deliver ' the message, and disconnect
' = ActiveEmail 2.3 sample =
Set objSmtp = CreateObject("ActiveEmail.EMailMessage")
objSmtp.Connect( "smtp.myserver.com", "MyLogin", "MyPassword" )
If( objSmtp.LastError = 0 ) Then
objSmtp.FromAddress = "myname@mycompany.com"
objSmtp.FromName = "My Name"
objSmtp.AddTo "roger@thecompany.com", "My friend Roger"
objSmtp.Subject = "Simple E-mail"
objSmtp.Body = "Hello my friend""
objSmtp.Send
objSmtp.Disconnect
End If
To learn more about installing the product for the first time, please read our manual. You can download the manual at www.activexperts.com/files/smtp-pop3-component/manual.htm
Upgrading from a previous version should be done in the following way: