How do I send attachments with mail merged emails?

  • Thread starter Noddy of Nottingham
  • Start date
N

Noddy of Nottingham

I'm working in Word and I want to send a mail merged email with an attachment
- but there doesn't seem to be a function for this. My source file is a list
as an Excel Worksheet, and I want to send a word document attached to emails
to all the email addresses on the list. I've also tried importing the XL list
into my Outlook address book but it's not letting do it because I've not
defined a 'range' in the XL file - I don't know how to do that eaither!! _
Help!!!
 
S

subject line in email

this is Supriya
i found this article very informative and happend to learn a new point
today. thans for the support and help
would you help me in suggeting an option to send an seperate subjet line for
each mail in the mail merge process. you can even check my question logged.

"option to merge seperate subject for email in the merge" from subject line
in email.


regards
Supriya V
 
D

Doug Robbins

The Outlook Object model does expose the .Subject attribute so if you have a
field in the catalog or directory type mailmerge document that contains the
individual subject lines, you can access it in the same way as the
..Addressee and .Attachment.

Declare the range object mysubject

Dim mysubject As Range

and then in the With oItem construction, include

Set mysubject = Maillist.Tables(1).Cell(Counter, 2).Range
mysubject.End = mysubject.End - 1
.Subject = mysubject


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top