Sending mail BCC [SOLVED]

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
MaxV
Posts: 1580
Joined: Tue May 28, 2013 2:20 pm
Contact:

Sending mail BCC [SOLVED]

Post by MaxV » Wed Jan 08, 2014 10:35 am

Hi,
is there a way to sell email to BCC addresses?
It seems to me that revMail support only TO and CC. :cry:
Last edited by MaxV on Wed Jan 15, 2014 4:07 pm, edited 1 time in total.
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w

jacque
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 7393
Joined: Sat Apr 08, 2006 8:31 pm
Contact:

Re: Sending mail BCC

Post by jacque » Wed Jan 08, 2014 7:09 pm

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.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com

MaxV
Posts: 1580
Joined: Tue May 28, 2013 2:20 pm
Contact:

Re: Sending mail BCC

Post by MaxV » Wed Jan 15, 2014 4:07 pm

It's possible, using the "mailto:protocol"! :P
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
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w

Post Reply