How do I use the .net fastreport MAPI to send BCC

Hello, I could help with the code I need to send emails from .NET fastreport BCC.
Currently I have this example that works for me.

Dim frxMail As FastReport.Export.Email.EmailExport = New FastReport.Export.Email.EmailExport()
frxMail.Account.UseMAPI = True
frxMail.Subject = "Asunto de email"
frxMail.MessageBody = "cuerpo del email"
frxMail.Address = "pruebas@treyder.com"
Dim acc As Array = {"test1@test.com", "test2@test.com"}
frxMail.CC = acc
frxMail.Account.Port = NPUERTOSMTP
frxMail.Account.EnableSSL = bUSARSSL
frxMail.Account.Host = CSMTP
frxMail.Account.UserName = CSMTPUSER
frxMail.Account.Password = CCONTRASENIA
frxMail.Account.Address = CNOMBRECUENTA

frxMail.Export = PDFExport

If frxMail.ShowDialog() = Windows.Forms.DialogResult.OK Then
frxMail.SendEmail(Report)
End If

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.