Put your email address in the lblEmail.Caption. Just click the email label and it will send using Outlook or Outlook Express.

VB Code:
  1. Private Declare Function ShellExecute Lib "shell32.dll" _
  2. Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal _
  3. lpOperation As String, ByVal lpFile As String, ByVal _
  4. lpParameters As String, ByVal lpDirectory As String, _
  5. ByVal nShowCmd As Long) As Long
  6.  
  7. Const SW_SHOW = 5
  8.  
  9. Private Sub lblEmail_Click()
  10.  
  11. ShellExecute Me.hwnd, "open", "mailto:" & lblEmail.Caption & "? _
  12. subject=" & App.Title, vbNullString, vbNullString, SW_SHOW
  13.  
  14. End Sub

This as been asked a few times on here.