Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am using the following code to send e-mail through Outlook from Excel.
SigString = "C:\Documents and Settings\...\Signatures\Bill.txt" If Dir(SigString) < "" Then Signature = GetBoiler(SigString) Else Signature = "" End If olBody="xxxemailmessagexxx" & Signature Set olMail = olApp.CreateItem(olMailItem) With olMail .To = olToName .cc = olccName .Subject = olSubject .Body = olBody .Attachments.Add olAttach1 .Send End With My regular Outlook layout has a blue background plus some paragraph formatting - this sends the message with no background, and I have to insert vbCrLf to get the paragraph formatting I want. Is there some way to pick up my standard Outlook e-mail settings? Also, I got the 'GetBoiler' code from the web - is there something newer now? It displays an error message with that, but goes ahead and sends the e-mails. -- Bill @ UAMS |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I don't use this often, but I seem to remember seeing an HTML option for
Body. You may want to research that a bit. -- HTH, Barb Reinhardt "BillCPA" wrote: I am using the following code to send e-mail through Outlook from Excel. SigString = "C:\Documents and Settings\...\Signatures\Bill.txt" If Dir(SigString) < "" Then Signature = GetBoiler(SigString) Else Signature = "" End If olBody="xxxemailmessagexxx" & Signature Set olMail = olApp.CreateItem(olMailItem) With olMail .To = olToName .cc = olccName .Subject = olSubject .Body = olBody .Attachments.Add olAttach1 .Send End With My regular Outlook layout has a blue background plus some paragraph formatting - this sends the message with no background, and I have to insert vbCrLf to get the paragraph formatting I want. Is there some way to pick up my standard Outlook e-mail settings? Also, I got the 'GetBoiler' code from the web - is there something newer now? It displays an error message with that, but goes ahead and sends the e-mails. -- Bill @ UAMS |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
e-mail from Excel to outlook | Excel Programming | |||
Excel Not Talking To Outlook [Email Settings] | Excel Discussion (Misc queries) | |||
How can I use Outlook express to send mail rather than Outlook by VBA code | Excel Programming | |||
How can I use Outlook express to send mail rather than Outlook by VBA code | Excel Programming | |||
Display mail application either in Outlook, or Outlook express | Excel Programming |