Re: Add html signature to email
From: Sean (Sean_at_discussions.microsoft.com)
Date: 10/28/04
- Next message: Ragnar Midtskogen: "Re: Access Rpt to PDF"
- Previous message: Jezebel: "Re: Access Rpt to PDF"
- In reply to: Veign: "Re: Add html signature to email"
- Next in thread: Jeff Johnson [MVP: VB]: "Re: Add html signature to email"
- Reply: Jeff Johnson [MVP: VB]: "Re: Add html signature to email"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 28 Oct 2004 13:38:02 -0700
I'll check it out, but is there a way to insert a saved signature such as
"sign_johndoe". Could I put the path of the signature file in the 'HTML Code
Here' field?
"Veign" wrote:
> Look into these two properties
>
> .BodyFormat = olFormatHTML
> .HTMLBody = "HTML CODE HERE"
>
> See if that helps.
>
> --
> Chris Hanscom - Microsoft MVP (VB)
> http://www.veign.com
> --
>
> "Sean" <Sean@discussions.microsoft.com> wrote in message
> news:9C264397-EB10-4ADF-9A5D-26EB62AFF673@microsoft.com...
> > Is there a way to add a default (or named) html signature to the email
> which
> > is generated from the code below?
> > Thanks,
> > Sean
> >
> > ' email code
> > Dim App
> > Dim Item
> > Dim y As Integer
> >
> > Dim sInFolder() As String
> > Attachment = txtAttach.Text
> > Set App = CreateObject("Outlook.Application")
> > Set Item = App.CreateItem(0)
> >
> > With Item
> > .Subject =
> > .To =
> > .Cc =
> > .Body =
> >
> > If chkAttach.Value = 1 And Len(Attachment > 20) Then
> > .Attachments.Add Attachment
> > End If
> >
> > .Send
> >
> > End With
> > Set App = Nothing
> > Set Item = Nothing
>
>
>
- Next message: Ragnar Midtskogen: "Re: Access Rpt to PDF"
- Previous message: Jezebel: "Re: Access Rpt to PDF"
- In reply to: Veign: "Re: Add html signature to email"
- Next in thread: Jeff Johnson [MVP: VB]: "Re: Add html signature to email"
- Reply: Jeff Johnson [MVP: VB]: "Re: Add html signature to email"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|