Hi,
I have this code setup to auto email and then receive read receipts. However I only want to receive receipt when the .TO recipient receives the email and not the CC or BCC. Is this possible?
.To = myAddress
.CC = "-----@hotmail.com"
.BCC = ""
.From = """"" <---@----->"
.Subject = ""
.TextBody = "" & vbNewLine & vbNewLine & _
"" & vbNewLine & vbNewLine & _
"" & UserFormInput.formField2 & vbNewLine & _
"" & UserFormInput.formField3 & vbNewLine & _
"" & UserFormInput.formField4 & vbNewLine & _
"" & UserFormInput.formField5 & vbNewLine & _
"" & UserFormInput.formField6 & vbNewLine & _
"" & UserFormInput.formField7 & vbNewLine & _
"" & UserFormInput.formField8 & vbNewLine & _
"" & UserFormInput.formField9 & vbNewLine & vbNewLine & _
"" & vbNewLine & _
""
.Fields("urn:schemas:httpmail:importance") = 2
.Fields("urn:schemas:mailheader:X-Priority") = 1
.Fields("urn:schemas:mailheader:return-receipt-to") = "-------@-------"
.Fields("urn:schemas:mailheader:disposition-notification-to") = "------@------"
.Fields.Update
.Send
End With
Regards,
Jeffrey
Bookmarks