OK- i have been busy doing other stuff and have come back to do some polishing off .
i have the code below - and it works a treat - but i need it to input a default outlook signiture -per user -is there some way of doing this (I do have a get around but if there is something out there ...)
Dim EmailApp, NameSpace, EmailSend As Object
Set EmailApp = CreateObject("Outlook.Application")
Set NameSpace = EmailApp.GetNamespace("MAPI")
Set EmailSend = EmailApp.CreateItem(0)
EmailSend.To = [Forms]![quotefrm]!
EmailSend.Subject = " Our Reference :-" & " " & [Forms]![quotefrm]![QuoteNo] & " - " & "(" & [Forms]![quotefrm]![Insured] & ")"
EmailSend.body = "For the Attention of :- " & Chr(9) & [Forms]![quotefrm]![POC] --(etc, etc)

i have the code below - and it works a treat - but i need it to input a default outlook signiture -per user -is there some way of doing this (I do have a get around but if there is something out there ...)
Dim EmailApp, NameSpace, EmailSend As Object
Set EmailApp = CreateObject("Outlook.Application")
Set NameSpace = EmailApp.GetNamespace("MAPI")
Set EmailSend = EmailApp.CreateItem(0)
EmailSend.To = [Forms]![quotefrm]!
EmailSend.Subject = " Our Reference :-" & " " & [Forms]![quotefrm]![QuoteNo] & " - " & "(" & [Forms]![quotefrm]![Insured] & ")"
EmailSend.body = "For the Attention of :- " & Chr(9) & [Forms]![quotefrm]![POC] --(etc, etc)