T
Tom
Using Outlook 2002 the following code is used to add recipients email
address's to a email sent from an Access application
For lngCurrentRow = 0 To lstCC.ListCount - 1
If lngCurrentRow = 0 Then
strCC = lstCC.Column(0, lngCurrentRow)
Else
strCC = strCC & ";" & lstCC.Column(0, lngCurrentRow)
End If
Next lngCurrentRow
For lngCurrentRow = 0 To lstBCC.ListCount - 1
If lngCurrentRow = 0 Then
strBCC = lstBCC.Column(0, lngCurrentRow)
Else
strBCC = strBCC & ";" & lstTo.Column(0, lngCurrentRow)
End If
Next lngCurrentRow
What we are finding is that all address's sent as CC are reciving the email
being sent yet only the 1st address in the BCC is receiving the mail
Any advice whay and how to overcome this problem would be appreciated
TIA
Tom
address's to a email sent from an Access application
For lngCurrentRow = 0 To lstCC.ListCount - 1
If lngCurrentRow = 0 Then
strCC = lstCC.Column(0, lngCurrentRow)
Else
strCC = strCC & ";" & lstCC.Column(0, lngCurrentRow)
End If
Next lngCurrentRow
For lngCurrentRow = 0 To lstBCC.ListCount - 1
If lngCurrentRow = 0 Then
strBCC = lstBCC.Column(0, lngCurrentRow)
Else
strBCC = strBCC & ";" & lstTo.Column(0, lngCurrentRow)
End If
Next lngCurrentRow
What we are finding is that all address's sent as CC are reciving the email
being sent yet only the 1st address in the BCC is receiving the mail
Any advice whay and how to overcome this problem would be appreciated
TIA
Tom