I have this reminder form so when I run it it tells me who hasnt done thier monthly assessment then I click a button to send an reminder by email. But it does everyone seperately and I'd rather just send one email. Is there an easy way to put multiple recipients in a email created by Access? I've tried making an email array but it didnt seem to iterate through all the emails and list them in the email To: box. Any thoughts?
Heres a look at what I have:
Private Sub send_cmd_Click()
On Error GoTo Err_send_cmd_Click
Dim begin As String
Dim beginshare As String
Dim finish As String
Dim finishshare As String
Dim link As String
finishshare = ", by the end of this month."
finish = " by the end of this month."
beginshare = "Please remember to do a 5S assessment for the shared area, "
begin = "Please remember to do a 5S assessment for "
link = "M:\Engineering\Cooling Dev\ACE\Cooling Lab ACE\Cooling Lab New 5S\New 5S\5S Self-Scorecard.mdb"
DoCmd.GoToRecord , , acLast
last = Form.CurrentRecord
DoCmd.GoToRecord , , acFirst
For i = 1 To last
If Area_Type.Value = "Lab" Or Area_Type.Value = "Office" Then
DoCmd.SendObject , , , Email.Value, , , "5S Reminder", begin & Area.Value & finish & " You can find the database at " & link, True
Else
DoCmd.SendObject , , , Email.Value, , , "5S Reminder", beginshare & Area.Value & finishshare & " You can find the database at " & link, True
End If
If Form.CurrentRecord < last Then
DoCmd.GoToRecord , , acNext
End If
Next
Exit_send_cmd_Click:
Exit Sub
Err_send_cmd_Click:
MsgBox Err.Description
Resume Exit_send_cmd_Click
End Sub
Heres a look at what I have:
Private Sub send_cmd_Click()
On Error GoTo Err_send_cmd_Click
Dim begin As String
Dim beginshare As String
Dim finish As String
Dim finishshare As String
Dim link As String
finishshare = ", by the end of this month."
finish = " by the end of this month."
beginshare = "Please remember to do a 5S assessment for the shared area, "
begin = "Please remember to do a 5S assessment for "
link = "M:\Engineering\Cooling Dev\ACE\Cooling Lab ACE\Cooling Lab New 5S\New 5S\5S Self-Scorecard.mdb"
DoCmd.GoToRecord , , acLast
last = Form.CurrentRecord
DoCmd.GoToRecord , , acFirst
For i = 1 To last
If Area_Type.Value = "Lab" Or Area_Type.Value = "Office" Then
DoCmd.SendObject , , , Email.Value, , , "5S Reminder", begin & Area.Value & finish & " You can find the database at " & link, True
Else
DoCmd.SendObject , , , Email.Value, , , "5S Reminder", beginshare & Area.Value & finishshare & " You can find the database at " & link, True
End If
If Form.CurrentRecord < last Then
DoCmd.GoToRecord , , acNext
End If
Next
Exit_send_cmd_Click:
Exit Sub
Err_send_cmd_Click:
MsgBox Err.Description
Resume Exit_send_cmd_Click
End Sub