![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
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 |
Ads |
#2
|
|||
|
|||
![]()
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 |
#3
|
|||
|
|||
![]()
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 |
#4
|
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to send email in HTML format? | Ivan | Outlook and VBA | 1 | August 10th 06 07:48 PM |
forward mail become in HTML format | ani | Outlook Express | 2 | June 1st 06 12:24 PM |
Problem with Outlook hyperlinks (html format - sorry..) | Brian Tillman | Outlook - General Queries | 2 | May 17th 06 02:54 AM |
Why does outlook 2000 doublespace HTML format? | MFrank | Outlook - Installation | 3 | March 26th 06 11:51 PM |
need to send rtf format using smtp and vb6 or vb.net | aharbour | Outlook and VBA | 1 | February 21st 06 01:56 PM |