How can we help?

Using Auron E-mail Component in Visual Basic 6


The E-mail Component can be used in Visual Basic 6.x or higher.

You can find working example of how to use the Auron E-mail Component in Visual Basic 6 on github.

In Visual Basic, go to the ‘Project/References…’ menu item and check the box next to E-mail Component Type Library.

Now, you can declare and create Email Component objects.

The following code shows how to declare, create and use one of the E-mail Component objects:

Dim objSmtp As AxEmail.Smtp                                ' Declaration
Set objSmtp = New AxEmail.Smtp                             ' Creation

' Display version information
Me.Caption = "Auron Email Component"  & objSmtp.Version