Hi Caryisms,
On the tool bar on the bottom of the screen, you should have a white box with the word "Click" over the top and a red circle with a white "X" in it on the bottom right portion of the icon.
If you do not, find the Express ClickYes Icon on your desk top or go to C:\Program Files\Express ClickYes\ClickYes.exe. Double clicking should bring up the icon on your toolbar.
Double click on that icon on your tool bar and the Red circle with white "X" should change to a black check mark.
Double clicking on the icon switches between these two values. When the black check mark is visible, you should not be asked to reply to the security question in outlook when you run your Access Module.
Either leave the icon off your toolbar, or leave it with the red x unless you intend to send e-mails via Access so that the normal security feature will prevent viruses from using yur computer to send e-mail.
Please see below the test Access Module that i have used to confirm that I can send e-mail via Access.
Sub emailtest()
'******begin code******
Dim email As String, Metric As String, origin As String, destination As String, notes As String
Dim eBody As String
Dim objOutlook As Outlook.Application
Dim objEmail As Outlook.MailItem
Dim Goal As Double
Dim Actual As Double
Dim frm As Form
Dim ctltxt As Object
Dim lstrcd As Integer
'**gathers information from your form. this sets the string variable to your fields
DoCmd.OpenForm "email"
Set frm = Screen.ActiveForm
DoCmd.GoToRecord , , acFirst
Do Until lstrcd = 2
email = Forms!email!email
Metric = Forms!email!Metric
Goal = Forms!email!Goal
Actual = Forms!email!Actual
notes = Forms!email!notes
If Actual > Goal Then
eBody = "Please review results: " & Metric & " Metric" & Chr(13) & Chr(13)
eBody = eBody & " Metric Goal =" & Goal & Chr(13)
eBody = eBody & " Actual =" & Actual & Chr(13) & Chr(13)
eBody = eBody & " at: " & notes
'***creates an instance of Outlook
Set objOutlook = CreateObject("Outlook.application"

Set objEmail = objOutlook.CreateItem(olMailItem)
'***creates and sends email
With objEmail
.To = email
'.CC = Insert cc name
.Subject = Metric & " Metric Failure "
.Body = eBody
.Send
End With
'**closes outlook
'Set objEmail = Nothing
'objOutlook.Quit
End If
'Go to next record in Table
DoCmd.GoToRecord , , acNext
lstrcd = lstrcd + 1
Loop
DoCmd.Close
End Sub
Regards,
Zig1
Regards,
Zig1