Page 1 of 1
Sending mail BCC [SOLVED]
Posted: Wed Jan 08, 2014 10:35 am
by MaxV
Hi,
is there a way to sell email to
BCC addresses?
It seems to me that
revMail support only
TO and
CC.

Re: Sending mail BCC
Posted: Wed Jan 08, 2014 7:09 pm
by jacque
I have a shell script that also needs to send a bcc. Shell doesn't support that either. I just send a second, separate email to the bcc address.
Re: Sending mail BCC
Posted: Wed Jan 15, 2014 4:07 pm
by MaxV
It's possible, using the "mailto:protocol"!
For example, create a button and put this code (it's a very long example showing also how to set up multiple addresses and subject and body):
Code: Select all
on mouseUp
launch url "mailto:someone@example.com,anotherone@example.com?cc=someoneelse@example.com&bcc=andsomeoneelse@example.com&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!"
end mouseUp