Alaska Software Inc. - How to send an email to multiple people
Username: Password:
AuthorTopic: How to send an email to multiple people
M.B. BaijuHow to send an email to multiple people
on Mon, 07 Oct 2019 05:24:04 +0200
Hi,

How to send an email to multiple people through ASINET ?

Just like cc and bcc.

Regards,

M.B.BAIJU
Peter AlderliestenRe: How to send an email to multiple people
on Mon, 07 Oct 2019 09:31:39 +0200
> How to send an email to multiple people through ASINET ?
> 
> Just like cc and bcc.

Look at     MIMEMessage:addHeader()
If you want to add multiple addresses, place a comma between the addresses.

Peter
Jonathan LeemingRe: How to send an email to multiple people
on Mon, 07 Oct 2019 10:37:34 -0600
On 10/7/2019 1:31 AM, Peter Alderliesten wrote:
>   
>> How to send an email to multiple people through ASINET ?
>>
>> Just like cc and bcc.
> 
> Look at     MIMEMessage:addHeader()
> If you want to add multiple addresses, place a comma between the addresses.
> 
> Peter
> 
Hi,

For multiple CC & BCC recipients you can also do multiple add Headers...

MIMEMessage:addheader("CC","emailaddress1@somewhere.com")
MIMEMessage:addheader("CC","emailaddress2@somewhere.com")

According to Alaska documentation regarding :addHeader( <cName>, 
<xValue> ) certain cName values cause a replacement however for "CC" & 
"BCC" values each call is additive.

Regards... Jonathan


jonathan.leeming@familycentre.org
Edmonton, Alberta, Canada
M.B. BaijuRe: How to send an email to multiple people
on Tue, 08 Oct 2019 05:47:02 +0200
Jonathan Leeming wrote in message news:e82ff1c$51974a1e$36a1d@news.alaska-software.com...
>On 10/7/2019 1:31 AM, Peter Alderliesten wrote:
>>   
>>> How to send an email to multiple people through ASINET ?
>>>
>>> Just like cc and bcc.
>> 
>> Look at     MIMEMessage:addHeader()
>> If you want to add multiple addresses, place a comma between the addresses.
>> 
>> Peter
>> 
>Hi,
>
>For multiple CC & BCC recipients you can also do multiple add Headers...
>
>MIMEMessage:addheader("CC","emailaddress1@somewhere.com")
>MIMEMessage:addheader("CC","emailaddress2@somewhere.com")
>
>According to Alaska documentation regarding :addHeader( <cName>, 
><xValue> ) certain cName values cause a replacement however for "CC" & 
>"BCC" values each call is additive.
>
>Regards... Jonathan

Hi Jonathan,

Thanks.

Regards,
M.B.BAIJU