non ricordo se sia possibile inviare come conoscenza nascosta Bcc inserendo qualche opportuno parametro.
Non mi interessa Outlook per cui è sufficiente mettere 1 , 2 , 3 come secondo elemento nell'array aRecipents
Mi riferisco solamente a MAPI , classe TMail
Nel senso che per quanto mi riguarda deve funzionare con Thunderbird e David Infocenter (simpe mapi)
Code: Select all | Expand
#include "Fivewin.ch"#include "Mail.ch"FUNCTION MAIN() LOCAL oMail DEFINE MAIL oMail; SUBJECT "This is the subject"; TEXT "This is the message"; FROM USER oMail:aRecipients = { { "info@marcoboschi.it", 1 } , { "mboschi@hardservice.it", 3 }} oMail:lFromUser := .T. ACTIVATE MAIL oMail RETURN NIL
Grazie