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

automatic bcc



 
 
Thread Tools Search this Thread Display Modes
  #11  
Old April 19th 06, 05:15 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
badgolferman
external usenet poster
 
Posts: 31
Default automatic bcc

Miyahn, 4/18/2006,6:12:44 PM, wrote:

"badgolferman" wrote in message

Yes, but a little tricky way.
See this post.

outgoing email with bcc copy automatically


Please send me the Google Groups link to this article or a different
format. I cannot get the above link to work.


You can search on Google Groups by subject or message id.
" outgoing email with bcc copy automatically" or


But the last line of HTA should be,
/form/body/html

I would be happy if some one verify my HTA's functionality on English
environments.


I have finally found your message. It appears the bulk of it is a .vbs
script. There are also some instructions before the script. Tell me
if I am reading your instructions correctly.

1. Create new account for test purpose.
2. Copy that gobbledy-gook into a text file and save as filename.vbs
3. Run script and follow prompts.

I am willing to be your test subject for the English version of XP/OE
but I want to make sure I get the instructions correctly. P.S. What is
a HTA?

--
"Any political party that includes the word 'democratic' in its name,
isn't." ~ Patrick Murray
Ads
  #12  
Old April 19th 06, 05:34 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default automatic bcc


"badgolferman" wrote in message
I have finally found your message. It appears the bulk of it is a .vbs
script. There are also some instructions before the script. Tell me
if I am reading your instructions correctly.

1. Create new account for test purpose.
2. Copy that gobbledy-gook into a text file and save as filename.vbs


Save a text file as "AddBccOE.hta"
(This file name has been written in comment line.)

3. Run script and follow prompts.

I am willing to be your test subject for the English version of XP/OE
but I want to make sure I get the instructions correctly. P.S. What is
a HTA?


HTA is the html application hosted by mshta.exe.

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


  #13  
Old April 20th 06, 12:11 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
badgolferman
external usenet poster
 
Posts: 31
Default automatic bcc

Miyahn, 4/18/2006,11:34:12 PM, wrote:

HTA is the html application hosted by mshta.exe.


"An error has occured in the script on this page.
Line 70
Char 3
Unable to open registry key HKCU\Identities\{insert
number}\Software\Microsoft\Internet account Manager\accounts\\smtp
email address for reading
Code 0
  #14  
Old April 20th 06, 01:04 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
AlmostBob
external usenet poster
 
Posts: 297
Default automatic bcc

replace the text

{insert number}

with the correct number of your outlook express identity

--
-
Adaware http://www.lavasoft.de
spybot http://security.kolla.de
AVG free antivirus http://www.grisoft.com
Etrust/Vet/CA.online Antivirus scan
http://www3.ca.com/securityadvisor/virusinfo/scan.aspx
Panda online AntiVirus scan http://www.activescan.com
Panda online AntiSpyware Scan
http://www.pandasoftware.com/virus_info/spyware/test/
Catalog of removal tools (1)
http://www.pandasoftware.com/download/utilities/
Catalog of removal tools (2)
http://www3.ca.com/securityadvisor/n...aspx?CID=40387
Trouble Shooting guide to Windows http://mvps.org/winhelp2002/
Blocking Unwanted Parasites with a Hosts file
http://mvps.org/winhelp2002/hosts.htm
links provided as a courtesy, read all instructions on the pages before
use
Grateful thanks to the authors/webmasters
_
"badgolferman" wrote in message
...
Miyahn, 4/18/2006,11:34:12 PM, wrote:

HTA is the html application hosted by mshta.exe.


"An error has occured in the script on this page.
Line 70
Char 3
Unable to open registry key HKCU\Identities\{insert
number}\Software\Microsoft\Internet account Manager\accounts\\smtp
email address for reading
Code 0



  #15  
Old April 20th 06, 01:19 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
badgolferman
external usenet poster
 
Posts: 31
Default automatic bcc

AlmostBob, 4/19/2006,7:04:47 PM, wrote:

replace the text

{insert number}

with the correct number of your outlook express identity


It was there, I just didn't feel like writing it all into the post. A
32 alpha-numeric number.
  #16  
Old April 20th 06, 03:18 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default automatic bcc

"badgolferman" wrote in message
"An error has occured in the script on this page.
Line 70
Char 3
Unable to open registry key HKCU\Identities\{insert
number}\Software\Microsoft\Internet account Manager\accounts\\smtp
email address for reading


Sorry, I was inserting one extra "\".

Change the line in the Init sub-procedure from
Key = Root & MainKey & "\" & aSubKey & "\"
to
Key = Root & MainKey & "\" & aSubKey

But, besides, there may be another cause because an error is supposed to occur
in the Init sub-procedure as well if this is a cause of the error.

# In my environments, extra "\" cause no error.
--
Miyahn (Masataka Miya****a) JPN
Microsoft MVP for Microsoft Office - Excel(Jan 2006 - Dec 2006)


  #17  
Old April 20th 06, 04:10 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
badgolferman
external usenet poster
 
Posts: 31
Default automatic bcc

Miyahn, 4/19/2006, 9:18:23 PM,
wrote:

"badgolferman" wrote in message

"An error has occured in the script on this page.
Line 70
Char 3
Unable to open registry key HKCU\Identities\{insert
number}\Software\Microsoft\Internet account Manager\accounts\\smtp
email address for reading


Sorry, I was inserting one extra "\".

Change the line in the Init sub-procedure from
Key = Root & MainKey & "\" & aSubKey & "\"
to
Key = Root & MainKey & "\" & aSubKey

But, besides, there may be another cause because an error is supposed
to occur in the Init sub-procedure as well if this is a cause of the
error.

# In my environments, extra "\" cause no error.


The change has made it work. However I never got to choose an identity
to apply it to. It applied it to my default account. How may I remove
this change if I choose? Do I run the program again anf press the DEL
button?
  #18  
Old April 20th 06, 09:53 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default automatic bcc

"badgolferman" wrote in message
Change the line in the Init sub-procedure from
Key = Root & MainKey & "\" & aSubKey & "\"
to
Key = Root & MainKey & "\" & aSubKey


The change has made it work. However I never got to choose an identity
to apply it to. It applied it to my default account.


Did you set proper email address to the new account before testing ?
Is the new account included in the drop down list of "Account"?

How may I remove
this change if I choose? Do I run the program again anf press the DEL
button?


Yes.

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


  #19  
Old April 21st 06, 01:00 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
badgolferman
external usenet poster
 
Posts: 31
Default automatic bcc

Miyahn, 4/20/2006,3:53:41 PM, wrote:

The change has made it work. However I never got to choose an
identity to apply it to. It applied it to my default account.


Did you set proper email address to the new account before testing ?
Is the new account included in the drop down list of "Account"?


I created a new identity but not a new e-mail account. So the drop
down menu only had one choice in there. I presume the program goes by
accounts.

Regardless, it seems to be working fine and I commend you on your
little utility. Thank you for sharing it with us.
  #20  
Old April 21st 06, 05:18 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default automatic bcc

"badgolferman" wrote in message
I created a new identity but not a new e-mail account. So the drop
down menu only had one choice in there. I presume the program goes by
accounts.

Regardless, it seems to be working fine and I commend you on your
little utility. Thank you for sharing it with us.


I am very glad to hear this.
Thank you for testing.

--
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
Bcc rosea2000 Outlook - General Queries 3 March 30th 06 02:05 PM
How do I cc or bcc someone in Outlook Tasks? Suz Outlook - General Queries 1 March 22nd 06 05:43 AM
Automatic BCC for outgoing mail - howto? Maria Outlook Express 8 March 20th 06 11:44 PM
bcc in hotmail [email protected] Outlook - General Queries 2 February 9th 06 04:23 PM
Lost bcc Norm Dion Outlook Express 4 January 12th 06 07:27 AM


All times are GMT +1. The time now is 02:08 PM.


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