A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Express Email Newsgroup » Outlook Express
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

outgoing email with bcc copy automatically



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 18th 06, 01:19 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Paul
external usenet poster
 
Posts: 3
Default outgoing email with bcc copy automatically

If I want any outgoing emails that I sent to have a blind cc copy a must to
my another webmail address. Can I do it and how?
Thanks.

--
Paul


Ads
  #2  
Old February 18th 06, 03:32 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default outgoing email with bcc copy automatically

Open a New Message window and put the address you want in the BCC field.
File | Save As | Save to the Desktop. You can leave it there, or drag it
onto the Quick Launch toolbar. When you want to send a message with a BCC to
your other address, click on that shortcut instead of Create Mail and your
address will already be there.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Paul" wrote in message
...
If I want any outgoing emails that I sent to have a blind cc copy a must
to my another webmail address. Can I do it and how?
Thanks.

--
Paul


  #3  
Old February 18th 06, 10:55 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Paul
external usenet poster
 
Posts: 3
Default outgoing email with bcc copy automatically

Thanks, Bruce.
What to do if I want it everytime there also in the outgoing Reply mails?
Paul

"Bruce Hagen"
...
Open a New Message window and put the address you want in the BCC field.
File | Save As | Save to the Desktop. You can leave it there, or drag it
onto the Quick Launch toolbar. When you want to send a message with a BCC
to your other address, click on that shortcut instead of Create Mail and
your address will already be there.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Paul" wrote in message
...
If I want any outgoing emails that I sent to have a blind cc copy a must
to my another webmail address. Can I do it and how?
Thanks.

--
Paul




  #4  
Old February 19th 06, 12:24 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default outgoing email with bcc copy automatically

I don't know of a way to do it for replies, just new mail.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Paul" wrote in message
...
Thanks, Bruce.
What to do if I want it everytime there also in the outgoing Reply mails?
Paul

"Bruce Hagen"
...
Open a New Message window and put the address you want in the BCC field.
File | Save As | Save to the Desktop. You can leave it there, or drag it
onto the Quick Launch toolbar. When you want to send a message with a BCC
to your other address, click on that shortcut instead of Create Mail and
your address will already be there.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Paul" wrote in message
...
If I want any outgoing emails that I sent to have a blind cc copy a must
to my another webmail address. Can I do it and how?
Thanks.

--
Paul





  #5  
Old February 19th 06, 04:42 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Paul
external usenet poster
 
Posts: 3
Default outgoing email with bcc copy automatically

Bruce, Thanks.

"Bruce Hagen"
...
I don't know of a way to do it for replies, just new mail.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Paul" wrote in message
...
Thanks, Bruce.
What to do if I want it everytime there also in the outgoing Reply mails?
Paul

"Bruce Hagen"
...
Open a New Message window and put the address you want in the BCC field.
File | Save As | Save to the Desktop. You can leave it there, or drag it
onto the Quick Launch toolbar. When you want to send a message with a
BCC to your other address, click on that shortcut instead of Create Mail
and your address will already be there.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Paul" wrote in message
...
If I want any outgoing emails that I sent to have a blind cc copy a
must to my another webmail address. Can I do it and how?
Thanks.

--
Paul







  #6  
Old February 26th 06, 03:15 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default outgoing email with bcc copy automatically

"Paul" wrote in message
If I want any outgoing emails that I sent to have a blind cc copy a must to
my another webmail address. Can I do it and how?
Thanks.


I use the following HTA to add bcc address to mail account on Japanese
WinXP + Japanese OE6.0

The HTA change registry value type of "SMTP Email Address" from "REG_SZ"
to "REG_Binary", and add bcc address.
# Note:This is a tricky way. Try first on new account.

Select target account on "Account" dropdown listbox.
Type Bcc Address in "Bcc Address" textbox.
If you click [Copy] button, original email address is copied to "Bcc Address"
textbox.
Click [Add] button to change registry.


!-- FileName : AddBccOE.hta --
htmlheadtitleAdd Bcc For OE Mail Account/title
hta:application scroll="no"/
script language=vbs
Const AccName = "Account Name", AdrName = "SMTP Email Address"
Const Root = "HKCU\", IdKey = "Identities", LUIDName = "Last User ID"
Const TKey ="Software\Microsoft\Internet Account Manager\Accounts"
Const aPat = "\w+@\w+\.\w+", bPat = "\r\nBcc: .+"
Dim WS, MainKey: window.resizeto 300,220
'
Sub Init()
Dim LUID, SubKeys, aSubKey, Key, Address, Account, aOption, E
Set WS = CreateObject("WScript.Shell")
LUID = WS.RegRead(Root & IdKey & "\" & LUIDName)
If LUID = "" Or _
LUID = "{00000000-0000-0000-0000-000000000000}" Then _
alert "Can't Specify User ID !!": window.close: Exit Sub
MainKey = IdKey & "\" & LUID & "\" & TKey
If EnumKey(Root & MainKey, SubKeys) 0 Then
MainKey = TKey
If EnumKey(Root & MainKey, SubKeys) 0 Then _
alert "Can't Read Accounts List !!": window.close: Exit Sub
End If
For Each aSubKey In SubKeys
Key = Root & MainKey & "\" & aSubKey & "\"
On Error Resume Next
Address = WS.RegRead(Key & "\" & AdrName)
E = Err.Number
On Error GoTo 0
If E = 0 Then
Account = WS.RegRead(Key & "\" & AccName)
Set aOption = document.createElement("option")
document.all.Accounts.options.add(aOption)
aOption.innertext = Account: aOption.Value = CStr(aSubKey)
End If
Next
SelChange
End Sub
'
Function EnumKey(ByVal MainKey, SubKeys)
Const Tmp = "Temp.reg"
Dim Buf, Pat, cRes, I, Keys()
Select Case Left(MainKey, 4)
Case "HKCR": MainKey = "HKEY_CLASSES_ROOT" & Mid(Mainkey, 5)
Case "HKCU": MainKey = "HKEY_CURRENT_USER" & Mid(Mainkey, 5)
Case "HKLM": MainKey = "HKEY_LOCAL_MACHINE" & Mid(Mainkey, 5)
End Select
With CreateObject("WScript.Shell")
.Run "Regedit /e " & Tmp & " """ & MainKey & """", 0, True
End With
With CreateObject("Scripting.FileSystemObject")
If .FileExists(Tmp) Then EnumKey = 0 Else EnumKey = 1: _
Exit Function
With .OpenTextFile(Tmp, 1, False, -2): Buf = .ReadAll: _
.Close: End With
.DeleteFile Tmp
End With
Pat = "\[" & Replace(MainKey, "\", "\\") & "\\([^\\\]]+)"
With New RegExp
.IgnoreCase = True: .Global = True: .Pattern = Pat
Set cRes = .Execute(Buf): ReDim Keys(cRes.Count - 1)
For I = 0 To cRes.Count - 1: Keys(I) = cRes(I).SubMatches(0): Next
End With
SubKeys = Keys: EnumKey = 0
End Function
'
Sub SelChange
Dim aSubKey, Address, Buf, I
aSubKey = document.all.Accounts.Value
Address = WS.RegRead(Root & MainKey & "\" & aSubKey & "\" & AdrName)
If TypeName(Address) = "String" Then
MailAdr.innertext = Address
Else
For I = 0 To UBound(Address): Buf = Buf & Chr(Address(I)): Next
MailAdr.innertext = Buf
End If
End Sub
'
Sub AddBcc()
Dim aSubKey, Address, BccAddress, Buf, I, L, BinAddr()
aSubKey = document.all.Accounts.Value
Address = MailAdr.innertext
BccAddress = document.all.BccAdr.Value
With New RegExp
.Pattern = aPat
If Not .Test(BccAddress) Then _
alert "Invalid Bcc Address !!": Exit Sub
.Pattern = bPat
If .Test(Address) Then _
alert "Bcc Already Exists !!": Exit Sub
End With
Buf = Address & "" & vbCrLf & "Bcc: " & BccAddress & Chr(0)
L = Len(Buf): ReDim BinAddr(L - 1)
For I = 1 To L: BinAddr(I - 1) = Asc(Mid(Buf, I)): Next
WS.RegDelete Root & MainKey & "\" & aSubKey & "\" & AdrName
RegWriteB Root & MainKey & "\" & aSubKey, AdrName, BinAddr
SelChange
End Sub
'
Sub RegWriteB(MainKey, Name, Data)
Const Tmp = "Temp.reg": Dim Buf, sData(), I
Select Case Left(MainKey, 4)
Case "HKCR": MainKey = "HKEY_CLASSES_ROOT" & Mid(Mainkey, 5)
Case "HKCU": MainKey = "HKEY_CURRENT_USER" & Mid(Mainkey, 5)
Case "HKLM": MainKey = "HKEY_LOCAL_MACHINE" & Mid(Mainkey, 5)
End Select
ReDim sData(UBound(Data))
For I = 0 To UBound(Data): sData(I) = Hex(Data(I)): Next
Buf = Buf & "REGEDIT4" & vbCrLf
Buf = Buf & "[" & MainKey & "]" & vbCrLf
Buf = Buf & """" & Name & """=hex:" & Join(sData, ",")
With CreateObject("Scripting.FileSystemObject")
With .OpenTextFile(Tmp, 2, True, 0): .Write Buf: .Close: End With
With CreateObject("WScript.Shell")
.Run "Regedit /s " & Tmp, 0, True
End With
.DeleteFile Tmp
End With
End Sub
'
Sub DelBcc()
Dim aSubKey, Address, Key
aSubKey = document.all.Accounts.Value: Address = MailAdr.innertext
With New RegExp
.Pattern = bPat: If Not .Test(Address) Then Exit Sub
Address = .Replace(Address, "")
End With
Key = Root & MainKey & "\" & aSubKey & "\" & AdrName
WS.RegDelete Key: WS.RegWrite Key, Address, "REG_SZ": SelChange
End Sub
'
Sub Adr2Bcc
Dim Address: Address = MailAdr.innertext
With New RegExp
.Pattern = bPat: If .Test(Address) Then Exit Sub
End With
document.all.BccAdr.innertext = Address
End Sub
/script/headbody onload="Init"form
pAccount : select id="Accounts" onchange="SelChange"
/select/p
pEmail Address: span id="MailAdr"/span/p
pBcc Address : input type=text id="BccAdr"/p
p align=center
input type=button value=" Copy " onclick="Adr2Bcc"
    
input type=button value=" Add " onclick="AddBcc"
    
input type=button value=" Del " onclick="DelBcc"/p
/form/bodyhtml

--
Miyahn (Masataka Miya****a) JPN
Microsoft MVP for Microsoft Office - Excel(Jan 2006 - Dec 2006)


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
error message that cannot connect to outgoing email server cscott Outlook - General Queries 4 March 3rd 06 04:00 PM
BCC and sender email miradoro Outlook - Using Contacts 3 February 27th 06 08:06 PM
how can i receive a copy of email i send out - automatically? Suchi Outlook - General Queries 3 February 16th 06 09:25 AM
How can I send 100 email using contact and BCC Ali Zohouri Outlook - Using Contacts 15 February 9th 06 07:37 PM
How can I automatically copy an appointment to another calendar Erin Outlook - Calandaring 0 February 2nd 06 05:49 PM


All times are GMT +1. The time now is 02:51 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2024 Outlook Banter.
The comments are property of their posters.