Microsoft Office Professional 2007 Full Version for PC Logo

Related Topics:

Posted on Nov 05, 2009
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

What's the max ms outlook bcc capacity - Microsoft Office Professional 2007 Full Version for PC

1 Answer

Anonymous

Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

President:

An expert whose answer got voted for 500 times.

  • Master 2,049 Answers
  • Posted on Nov 07, 2009
Anonymous
Master
Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

President:

An expert whose answer got voted for 500 times.

Joined: Jul 27, 2009
Answers
2049
Questions
0
Helped
1489567
Points
8420

Microsoft has no published maximum. The capacity seems to be more a limit of your ISP, not Microsoft. If you get a 452 error, it's a server-side error being generated from your ISP.

Microsoft Exchange has a published BCC max of 5000 email addresses.

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer

Bcc emails on Outlook 2010

Sounds like your Email has a set up issue. Check the Receive email setups under options. Make sure that you are able to receive BCC emails.
tip

Export Notes to Outlook Platform

NSF to PST Converter is a great utility for converting Lotus Notes NSF to MS Outlook PST effectively. By using this NSF to PST converter software users can save maximum time in email migration process. The tool is so capable to export all email items from NSF folders to PST along with their email (Inbox, Outbox etc) properties (To, CC, BCC etc) and also other database (attachments, tasks, calendar etc).

It supports Lotus Notes versions 9.0.1, 9.0, 8, 7, 6 and above, MS Outlook versions 2000, XP, 2003, 2007, 2010, 2013 and 2016 Windows OS versions (Windows 95, 98, 2000, XP,Vista, Win7, 8., 8.1 and 10).
See more about tool :- http://www.nucleusdatarecovery.org/convert-nsf-to-pst.html

on Jan 13, 2016 • Computers & Internet
0helpful
2answers

How to automatically BCC my outlook emails to another email address I must send copies automatically to my assistant..please tell me the steps in setting it up as a rule or whatever in outlook! Thank...

To automatically Bcc all outgoing messages
Outlook has a rule to automatically Cc another person on outgoing messages, but no equivalent for Bcc. This page offers two code samples for adding such an automatic Bcc. Both use the Application.ItemSend event, which fires whenever a user sends a message or other item.
Method #1 (Basic) This version is suitable for Outlook 2003 or later. It uses Outlook objects exclusively and includes error handling to avoid problems with an invalid Bcc address. Place this VBA code in the built-in ThisOutlookSession module:
=======Code Starts here Method#1======
Private Sub Application_ItemSend(ByVal Item As Object, _
Cancel As Boolean)
Dim objRecip As Recipient
Dim strMsg As String
Dim res As Integer
Dim strBcc As String
On Error Resume Next
' #### USER OPTIONS ####
' address for Bcc -- must be SMTP address or resolvable
' to a name in the address book
strBcc = "[email protected]"
Set objRecip = Item.Recipients.Add(strBcc)
objRecip.Type = olBCC
If Not objRecip.Resolve Then
strMsg = "Could not resolve the Bcc recipient. " & _
"Do you want still to send the message?"
res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _
"Could Not Resolve Bcc Recipient")
If res = vbNo Then
Cancel = True
End If
End If
Set objRecip = Nothing
End Sub
=======Code ENDS here Method#1======
Make sure you substitute the right e-mail address for "[email protected]."
The reason that this method is not suitable for versions earlier than Outlook 2003 is because it will trigger an address book security prompt due to the use of Recipients.Add. You could avoid security prompts by simply setting the Item.Bcc property to the desired address, but that has two problems. First, it would wipe out any Bcc recipients that the user might have already added. Also, in some Outlook configurations, setting Bcc without trying to resolve the address results in an unresolved address, even if you use a proper SMTP address; you'll get an error, and Outlook won't send the message.
0helpful
1answer

Max capacity of the BCC column in microsoft outlook

I really don't know, however it may be better to create a group or mailing list instead, rather than to individually select email addresses
Not finding what you are looking for?

781 views

Ask a Question

Usually answered in minutes!

Top Microsoft Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

k24674

Level 3 Expert

8093 Answers

Brad Brown

Level 3 Expert

19187 Answers

Are you a Microsoft Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...