Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook and VBA (http://www.outlookbanter.com/outlook-vba/)
-   -   automating e-mailfrom vb6 KEEP the HTML format (http://www.outlookbanter.com/outlook-vba/25597-automating-e-mailfrom-vb6-keep.html)

ton August 30th 06 08:44 PM

automating e-mailfrom vb6 KEEP the HTML format
 
hi,
it is not difficult to send an email in VB using the outlook model.
Especially when you just sent plain text
However what I want is the following:

I'want to use the VB to add or insert some text in the template default
style of the newmailitem.
This is how my code looks like:

Err.Clear
Set TheApp = GetObject(, "Outlook.Application")
If Err.Number 0 Then
Set TheApp = CreateObject("Outlook.Application")
Quit = True
End If
Err.Clear
On Error Resume Next
With TheApp
Set TheNameSpace = .GetNamespace("mapi")
If OFTfile"" Then
Set TheMailItem = .CreateItemFromTemplate(OFTfile)
Else
Set TheMailItem = .CreateItem(olMailItem)
End If
TheMailItem.Display 'WHEN DISPLAYING HERE THE TEMPALTE IS LOADED
End With
With TheMailItem
.Recipients.Add Adres
.Subject = Subject
If Body "" Then
.Body = Body '.HTMLbody=Body AFTER THIS LINE WE GOT A PROBLEM
End If
End With
'the problem is that the backgroud is white, and the tamplate was a
beautifull watermark picture in it.
So how can I keep the formatting
Just tell me with wich outlook version I can achieve this result
And how can I get it !!

Thank YOU all

ton






Michael Bauer [MVP - Outlook] August 31st 06 05:36 AM

automating e-mailfrom vb6 KEEP the HTML format
 
Am Wed, 30 Aug 2006 21:44:15 +0200 schrieb ton:

I think you need to add your text to the HTMLBody property.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


hi,
it is not difficult to send an email in VB using the outlook model.
Especially when you just sent plain text
However what I want is the following:

I'want to use the VB to add or insert some text in the template default
style of the newmailitem.
This is how my code looks like:

Err.Clear
Set TheApp = GetObject(, "Outlook.Application")
If Err.Number 0 Then
Set TheApp = CreateObject("Outlook.Application")
Quit = True
End If
Err.Clear
On Error Resume Next
With TheApp
Set TheNameSpace = .GetNamespace("mapi")
If OFTfile"" Then
Set TheMailItem = .CreateItemFromTemplate(OFTfile)
Else
Set TheMailItem = .CreateItem(olMailItem)
End If
TheMailItem.Display 'WHEN DISPLAYING HERE THE TEMPALTE IS LOADED
End With
With TheMailItem
.Recipients.Add Adres
.Subject = Subject
If Body "" Then
.Body = Body '.HTMLbody=Body AFTER THIS LINE WE GOT A PROBLEM
End If
End With
'the problem is that the backgroud is white, and the tamplate was a
beautifull watermark picture in it.
So how can I keep the formatting
Just tell me with wich outlook version I can achieve this result
And how can I get it !!

Thank YOU all

ton


ton August 31st 06 08:30 AM

automating e-mailfrom vb6 KEEP the HTML format
 
I'tried this also, without any result.
"Michael Bauer [MVP - Outlook]" schreef in bericht
...
Am Wed, 30 Aug 2006 21:44:15 +0200 schrieb ton:

I think you need to add your text to the HTMLBody property.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


hi,
it is not difficult to send an email in VB using the outlook model.
Especially when you just sent plain text
However what I want is the following:

I'want to use the VB to add or insert some text in the template default
style of the newmailitem.
This is how my code looks like:

Err.Clear
Set TheApp = GetObject(, "Outlook.Application")
If Err.Number 0 Then
Set TheApp = CreateObject("Outlook.Application")
Quit = True
End If
Err.Clear
On Error Resume Next
With TheApp
Set TheNameSpace = .GetNamespace("mapi")
If OFTfile"" Then
Set TheMailItem = .CreateItemFromTemplate(OFTfile)
Else
Set TheMailItem = .CreateItem(olMailItem)
End If
TheMailItem.Display 'WHEN DISPLAYING HERE THE TEMPALTE IS LOADED
End With
With TheMailItem
.Recipients.Add Adres
.Subject = Subject
If Body "" Then
.Body = Body '.HTMLbody=Body AFTER THIS LINE WE GOT A PROBLEM
End If
End With
'the problem is that the backgroud is white, and the tamplate was a
beautifull watermark picture in it.
So how can I keep the formatting
Just tell me with wich outlook version I can achieve this result
And how can I get it !!

Thank YOU all

ton




Michael Bauer [MVP - Outlook] September 1st 06 05:24 AM

automating e-mailfrom vb6 KEEP the HTML format
 
Am Thu, 31 Aug 2006 09:30:02 +0200 schrieb ton:

This sample works great.

Dim File As String
Dim Mail As Outlook.MailItem

File = "c:\template.oft"
Set Mail = Application.CreateItemFromTemplate(File)
Mail.Display
Mail.HTMLBody = Mail.HTMLBody & "hallo user"
Mail.Save

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


I'tried this also, without any result.
"Michael Bauer [MVP - Outlook]" schreef in bericht
...
Am Wed, 30 Aug 2006 21:44:15 +0200 schrieb ton:

I think you need to add your text to the HTMLBody property.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


hi,
it is not difficult to send an email in VB using the outlook model.
Especially when you just sent plain text
However what I want is the following:

I'want to use the VB to add or insert some text in the template default
style of the newmailitem.
This is how my code looks like:

Err.Clear
Set TheApp = GetObject(, "Outlook.Application")
If Err.Number 0 Then
Set TheApp = CreateObject("Outlook.Application")
Quit = True
End If
Err.Clear
On Error Resume Next
With TheApp
Set TheNameSpace = .GetNamespace("mapi")
If OFTfile"" Then
Set TheMailItem = .CreateItemFromTemplate(OFTfile)
Else
Set TheMailItem = .CreateItem(olMailItem)
End If
TheMailItem.Display 'WHEN DISPLAYING HERE THE TEMPALTE IS LOADED
End With
With TheMailItem
.Recipients.Add Adres
.Subject = Subject
If Body "" Then
.Body = Body '.HTMLbody=Body AFTER THIS LINE WE GOT A

PROBLEM
End If
End With
'the problem is that the backgroud is white, and the tamplate was a
beautifull watermark picture in it.
So how can I keep the formatting
Just tell me with wich outlook version I can achieve this result
And how can I get it !!

Thank YOU all

ton



All times are GMT +1. The time now is 07:34 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-2006 OutlookBanter.com