A Microsoft Office (Excel, Word) forum. OfficeFrustration

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 » OfficeFrustration forum » Microsoft Word » Mailmerge
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Multiple addresses + CC issues - using MAPILab or with VB code cha



 
 
Thread Tools Display Modes
  #1  
Old January 2nd, 2009, 05:33 PM posted to microsoft.public.word.mailmerge.fields
Abhishek Dadu[_2_]
external usenet poster
 
Posts: 2
Default Multiple addresses + CC issues - using MAPILab or with VB code cha

Hello,

I have installed, and am trying to use the TEST version of MAPILab for
trying to send emails with Word 07 & Excel, for being able to 1 CC
recepients, in addition to, 2 have multiple email addresses in the "To" list.

Both Option 1&2, I assume are currently not possible by using "Mail Merge
with attachment" VB code changes. Is there any way by either using MAPILab
test version or VB code changes (if yes, could I get the code bytes). I am
able to successfully do Mail Merge with attachments

Secondly, the Express Click Yes 1.2 version doesnt seem to be working with
Word 2007?

Appreciate your help.

Best Wishes,
Abhishek.
  #2  
Old January 2nd, 2009, 08:42 PM posted to microsoft.public.word.mailmerge.fields
Peter Jamieson
external usenet poster
 
Posts: 4,550
Default Multiple addresses + CC issues - using MAPILab or with VB codecha

IN Doug's Mail Merge with Attachment" macro, you have a table of e-mail
addressees and attachments with

column 1 containing the e-mail address
column 2 and subsequent columns containing the attachment path names

If you insert a new column after column 1 for "cc" addresses, so youu have

column 1 containing the "to" e-mail addresses
column 2 containing the "cc" e-mail addresses
column 3 and subsequent columns containing the attachment path names

locate the following code

Set Datarange = Maillist.Tables(1).Cell(j, 1).Range
Datarange.End = Datarange.End - 1
.To = Datarange

and add the following after it

' get the cc addresses from cell(j,2)
Set Datarange = Maillist.Tables(1).Cell(j, 2).Range
Datarange.End = Datarange.End - 1
.CC = Datarange

then change the following line, which looks like

For i = 2 To Maillist.Tables(1).Columns.Count

to

For i = 3 To Maillist.Tables(1).Columns.Count


If you have multiple "to" or "cc" email addresses for a particular set
of attachments, then include all the addresses in the approprate column,
separated by ";". As far as I can tell, Outlook will then do the right
thing, although there may be limits to the total number of characters in
the to or cc strings.

If this does not work for you then I think extra code will be needed to
split the e-mail addresses and insert them one at a time as "recipients"
of the email.

Peter Jamieson

http://tips.pjmsn.me.uk

Abhishek Dadu wrote:
Hello,

I have installed, and am trying to use the TEST version of MAPILab for
trying to send emails with Word 07 & Excel, for being able to 1 CC
recepients, in addition to, 2 have multiple email addresses in the "To" list.

Both Option 1&2, I assume are currently not possible by using "Mail Merge
with attachment" VB code changes. Is there any way by either using MAPILab
test version or VB code changes (if yes, could I get the code bytes). I am
able to successfully do Mail Merge with attachments

Secondly, the Express Click Yes 1.2 version doesnt seem to be working with
Word 2007?

Appreciate your help.

Best Wishes,
Abhishek.

  #3  
Old January 3rd, 2009, 06:38 AM posted to microsoft.public.word.mailmerge.fields
Graham Mayor
external usenet poster
 
Posts: 18,297
Default Multiple addresses + CC issues - using MAPILab or with VB code cha

The MAPILabs mail merge toolkit is intended to be used for manual merges. It
will allow you to use fields that contain multiple e-mail addresses, and
attachments, but is not user programmable, and the chances of the software
writers revealing their code are microscopically slim to non-existent.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Abhishek Dadu wrote:
Hello,

I have installed, and am trying to use the TEST version of MAPILab for
trying to send emails with Word 07 & Excel, for being able to 1 CC
recepients, in addition to, 2 have multiple email addresses in the
"To" list.

Both Option 1&2, I assume are currently not possible by using "Mail
Merge with attachment" VB code changes. Is there any way by either
using MAPILab test version or VB code changes (if yes, could I get
the code bytes). I am able to successfully do Mail Merge with
attachments

Secondly, the Express Click Yes 1.2 version doesnt seem to be working
with Word 2007?

Appreciate your help.

Best Wishes,
Abhishek.



 




Thread Tools
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 Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:56 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.