If the 'Auto-BCC' field isn't enough, please consider to use the 'Auto-BCC' script. The script is evaluated each time you compose/reply to a message or change the 'From'/'To' address fields:
Instructions extracted from http://mailplaneapp.com/howto/entry/auto_bcc/ The Auto-BCC script If you only want to insert different BCC addresses based on the Account/From/To fields, you can create a user script to compute the right address: - Create a file called user_script.js in the folder ~/Library/Application Support/Mailplane folder - Open the file and create a function called mailplaneusercompute_bcc. Example: function mailplane_user_compute_bcc(account, fromaddr, toaddr, bccaddr) { console.log(account); // show values in inspector (Right Click > Inspect > Console) console.log(fromaddr); console.log(toaddr); if (account == "[email protected]") { if (toaddr.search(/repliesapp.com/) != -1) { return "[email protected]"; } } if (fromaddr == "[email protected]") { return "[email protected]"; // set the BCC, override any previous value } return bccaddr; // do not change the bcc address } Use the View > Reload Page menu item to load or reload the script. Tip: The script will be called when your compose a new message or when your create a reply. When you change the "From" address or leave the "To" address the script will be called to compute a new BCC address. Ruben Bakker uncomplex gmbh http://mailplaneapp.com http://repliesapp.com > <p>How do I make "Auto insert BCC" to not auto insert based on "To:"<br > />email address?</p> > > <p>Here's the use case…I BCC my partner on everything. I don't want to<br > />spam her with non-business messages to my buddies. So, whenever I sent<br > />a message to a buddy, her email should not be inserted. Any ideas?<br > />I've got filters set up on the inbound side to handle this, but I<br > />couldn't find anything that works for outbound messages.</p> > > <p>-- <br />You received this message because you are subscribed to the > Google Groups "mailplaneapp" group.<br />To post to this group, send email to > <a > href="mailto:[email protected]">[email protected]</a>.<br > />To unsubscribe from this group, send email to <a > href="mailto:[email protected]">[email protected]</a>.<br > />For more options, visit this group at <a > href="http://groups.google.com/group/mailplaneapp?hl=en">http://groups.google.com/group/mailplaneapp?hl=en</a>.</p> > > <p></p> -- You received this message because you are subscribed to the Google Groups "mailplaneapp" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/mailplaneapp?hl=en.
