Vielen Dank für rasche Rückantwort.
E. Zenker
http://word.mvps.org/faqs/mailmerge/MergeWithAttachments.htm
Peter Jamieson
"E.Zenker" <ew...@web.de> wrote in message
news:OBHYyKdO...@tk2msftngp13.phx.gbl...
is it posible to do this alsi with a dokument containing Grafiks and
formated text.
I tried HTMLBODY like this:
.Subject = mysubject
.HTMLBody = ActiveDocument.Content
Set Datarange = Maillist.Tables(1).Cell(Counter, 1).Range
Datarange.End = Datarange.End - 1
.To = Datarange
For i = 2 To Maillist.Tables(1).Columns.Count
Set Datarange = Maillist.Tables(1).Cell(Counter, i).Range
Datarange.End = Datarange.End - 1
.Attachments.Add Trim(Datarange.Text), olByValue, 1
Next i
.Send
but there are no grafik and formated text in the mailbody what is wrong??
Please Help
"Peter Jamieson" <p...@KillmapSpjjnet.demon.co.uk> schrieb im Newsbeitrag
news:OaEaZVeO...@TK2MSFTNGP10.phx.gbl...
I saw your other messages and looked at the object model. I think there are
at least the following problems:
a. adding attachments can alter the format of the message anyway (I think)
b. according to the Outlook object model documentation, the thing you
assign to .HTMLBody should be HTML text. I do not think
ActiveDocument.Content or any other Word range will return this, so you will
probably need to save the document as HTML first, then copy its text to a
string buffer, then assign that to .HTMLBody. I haven't tried this so am not
sure. However, the problem with that is that HTML does not actually contain
images, only links to images. So I do not think you will be able to put
image data in a message body using this technique.
Peter Jamieson
"E.Zenker" <ew...@web.de> wrote in message
news:uzt0qw2P...@TK2MSFTNGP09.phx.gbl...
If I am sending a mail merge per email (without attachments) the picture and
the formatted text is transported without problem to the outlook mail body
by word.
So it should be possible to do the same with a macro to add also
attachments.
By the way does word 2003 supports sending mail merge with attachments.
Thank you.
E. Zenker
"Peter Jamieson" <p...@KillmapSpjjnet.demon.co.uk> schrieb im Newsbeitrag
news:uRhQLz3P...@TK2MSFTNGP15.phx.gbl...
I know, but I think that is because Word uses techniques which I do not
believe are available through its automation methods. But I may be wrong of
course!
> By the way does word 2003 supports sending mail merge with attachments.
No, it is the same as Word 2002 in this respect.
Peter Jamieson
"E.Zenker" <ew...@web.de> wrote in message
news:e9$mQP4PF...@TK2MSFTNGP14.phx.gbl...
Peter Jamieson
"Graham" <Gra...@discussions.microsoft.com> wrote in message
news:8ABD239B-CCA4-4C95...@microsoft.com...