Hi Rick,

What code did you try to add the Bcc e-mail recipients?

The tRecipient variable to the tsNetSmtpSync command needs to be one e-mail 
address per line of all the recipients for the e-mail (To, Cc and Bcc) and that 
is what is used to determine who the e-mail is sent to.

The rest of that script (in the lesson) is about how to format the e-mail 
message, Bcc addresses don't get added to the header of the e-mail message.

So assuming your Bcc's addresses are stored in a variable called tBcc (one per 
line), then you need to simply adjust the script (from the lesson) as follows:

-- Make tRecipient a list of all recipients (To, Cc and Bcc)
put tTo & cr & tCc & cr & tBcc into tRecipient 

put tsNetSmtpSync(tUrl, tFrom, tRecipient, tEmailMessage, tResponseHeaders, 
tBytes, tSettings) into tResult

Regards,

Charles

> On 4 Mar 2021, at 9:20 am, Rick Harrison via use-livecode 
> <use-livecode@lists.runrev.com> wrote:
> 
> Ok, everything is fine on the format front now.
> 
> I noticed the code takes about a minute to execute all the way through.
> (Must be a lot of background process have to run?)
> 
> I tried Charles Warwick’s suggestion for Bcc, and it didn’t work. :-(
> If any of you want to take a crack at it, please let me know your results.
> 
> Thanks to everyone!
> 
> Rick
> _______________________________________________
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to