If you want a Bcc header, you can use
oSmtp.AddHeader "Bcc", "bcc@test.com"
Originally Posted by: FestePlatte
Hi Ivan,
if I do so, the BCC header is added as the first header entry, bevor any other header. Will that work?
Best regards,
Feste Platte
Originally Posted by: ivan
Yes it will work, but EASendMail has a known issue with Bcc header, if you used AddHeader with Bcc, there is only bcc header added, but if you call SendMail method, the recipient in bcc header won't be sent,
However if you used
AddRecipient "bcc", "bcc@domain", 2
AddHeader "Bcc", "bcc@domain" will not work.
In SMTP protocol, Bcc header should be removed, could you tell me why you need bcc header in message?