a BCC script question

Status
Not open for further replies.

ciuncky

Member
Outlook version
Outlook 2010 32 bit
Email Account
Exchange Server
Hello guys,

I would need little help with some auto forwarding.

I basically have a certain email that has to be forwarded to a specific group, based on the header.

Can i, using a script, remove the information of the original sender (name, email name, date etc), forward it to myself, BCC the specific group and modify the name of the email? Adding some extra text before my signature and the original message is not a must, but could help.

All of these have to be met, otherwise the email would be useless. Currently I do it manually and it's not a huge waste of time but I was hoping for a little extra time.

I know that can't do it from rules, so a script might be my last hope.

Please be gentle and offer some info on how to use/import the script, i'm not a programmer really and my VA knowledge ends after pressing ALT+F11 :D

Thanks in advance,

PS: I'm using outlook '10

ALEX
 
Should be able to do it using a Run a Script rule. Start with the last macro at Run a Script Rule: Send a new message when a message arrives - Slipstick Systems

BCC is objMsg.BCC= "alias@domain.com"

If you use names instead of addresses (or in addition to), you should use Resolve the addresses before sending:

Dim objOutlookRecip As Outlook.Recipient

For Each objOutlookRecip In objMsg.Recipients

objOutlookRecip.Resolve

Next

To tweak the body, you can do something like

objMsg.Body = Item.Body & vbcrlf & "Whatever I want to say" & objMsg.Body

This copies the incoming message body to the new message, adds a line feed, your note, then the original new message body (for your signature). Changing the order is as simple as changing the order of the objects in that line.
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
B BCC issues after changing root folder path for gmail Using Outlook 1
M CC AND BCC Using Outlook 1
C Create new Message with shared contacts & BCC'ing recipients Outlook VBA and Custom Forms 0
N Outlook rules don't create a copy for bcc'ed emails Using Outlook 3
M Forward Appointment as BCC with VBScript Outlook VBA and Custom Forms 7
O Outlook on Android - add BCC Using Outlook 2
S Example VBA Macro - To Conditionally Change the From Account and Add a BCC Address on Emails Outlook VBA and Custom Forms 11
G Bcc help - Preventing multiple forwards from a bcc'd distribution group Using Outlook 1
J Will BCC messages still deliver if TO address fails Outlook 2013 Using Outlook 3
V Please help if you can. Problems with Bcc BCM (Business Contact Manager) 3
S BCC lists addressees Using Outlook 2
T bcc and Google imap Using Outlook 3
V Mark BCC when emails is sent from specific account Outlook VBA and Custom Forms 2
B Auto BCC VBA macro: how to add exceptions? Using Outlook 28
V using Bcc in Outlook.com 2013 Using Outlook 1
J Cc and Bcc not working Using Outlook 8
K received bcc as encrypted Using Outlook 12
V Contact group: addresses in BCC? Using Outlook 2
C BCC - How many email address will it accomodate? Using Outlook 2
P help me plase !!! outlook 2007 I can see mail Bcc Using Outlook 1
N How do you BCC Someone Using Outlook 1
S Automatically move recipients to BCC field Using Outlook 3
S Rule to Auto-forward/re-direct a specific incoming email to a group via BCC? Using Outlook 1
M Automatic Bcc Using Outlook 2
L automating a BCC on every email Using Outlook 1
M Create Rule to BCC email? Using Outlook 2
H show bcc field when viewing a sent message Using Outlook 15
williamlambton Customised To, CC, BCC and Have-replies-sent-to columns in message lists. Using Outlook 16
L Creating Custom Rule to Forward emails to a BCC Using Outlook 1
T display bcc field in sent emails Using Outlook 1
S Rule to move BCC email to a folder Using Outlook 6
A How to disable bcc option in GAL - Address Book - Exchange 2007 Exchange Server Administration 4
D BCC based upon TO address Outlook VBA and Custom Forms 1
G All contacts from Contact Folder to BCC by code Outlook VBA and Custom Forms 1
G Populate BCC field with all Contacts within a Contact Folder Outlook VBA and Custom Forms 4
S BCC How to? Outlook VBA and Custom Forms 1
R (Outlook2003)Monitor change for "to" "cc" "bcc" on message compose dialog? Outlook VBA and Custom Forms 6
R suppress BCC Outlook VBA and Custom Forms 1
R how to display Bcc if not available? Outlook VBA and Custom Forms 1
P To: or CC: or BCC: Outlook VBA and Custom Forms 4
Y bcc macro Outlook VBA and Custom Forms 1
R Script for simplifying spam control Outlook VBA and Custom Forms 8
J Outlook Rules VBA Run a Script - Multiple Rules Outlook VBA and Custom Forms 0
N Outlook 2021 'Run Script" Rules? Outlook VBA and Custom Forms 4
K Run a script rule to auto 'send again' on undeliverable emails? Outlook VBA and Custom Forms 1
W Designer Form 2013 and Script ? how ? Outlook VBA and Custom Forms 1
G print attachment straight away; working script edit not working Outlook VBA and Custom Forms 0
G Save attachment run a script rule Outlook VBA and Custom Forms 0
FryW Need help modifying a VBA script for in coming emails to auto set custom reminder time Outlook VBA and Custom Forms 0
G Script does not exist Outlook VBA and Custom Forms 0

Similar threads

Back
Top