ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Email from Excel Function (https://www.excelbanter.com/excel-programming/438653-email-excel-function.html)

Crazyhorse

Email from Excel Function
 
Set oOMail = oOApp.CreateItem(olMailItem)
With oOMail
.Display
.Body = eBody
.To = eTo
.CC = ecc
.Attachments.Add eAttach, olByValue, 1
.Subject = eSubject

.Send
End With


How do I add my signature?

Thanks

Ron de Bruin

Email from Excel Function
 
Hi Crazyhorse

See
http://www.rondebruin.nl/mail/folder3/signature.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Crazyhorse" wrote in message ...
Set oOMail = oOApp.CreateItem(olMailItem)
With oOMail
.Display
.Body = eBody
.To = eTo
.CC = ecc
.Attachments.Add eAttach, olByValue, 1
.Subject = eSubject

.Send
End With


How do I add my signature?

Thanks


Barb Reinhardt

Email from Excel Function
 
http://www.rondebruin.nl/mail/folder3/signature.htm
--
HTH,

Barb Reinhardt



"Crazyhorse" wrote:

Set oOMail = oOApp.CreateItem(olMailItem)
With oOMail
.Display
.Body = eBody
.To = eTo
.CC = ecc
.Attachments.Add eAttach, olByValue, 1
.Subject = eSubject

.Send
End With


How do I add my signature?

Thanks


Crazyhorse

Email from Excel Function
 
I figured it out.

SigString = "C:\Documents and Settings\" & Environ("username") & _
"\Application Data\Microsoft\Signatures\Sig.txt"

If Dir(SigString) < "" Then
Signature = GetBoiler(SigString)
Else
Signature = ""
End If


Set oOMail = oOApp.CreateItem(olMailItem)
With oOMail
'.Display
.To = eTo
.CC = ecc
.Subject = eSubject
.Body = vbNewLine & vbNewLine & eBody & vbNewLine &
Signature
.Attachments.Add eAttach, olByValue, 1
.Send
End With
Set oOMail = Nothing



Function GetBoiler(ByVal sFile As String) As String
Dim fso As Object
Dim ts As Object
Set fso = CreateObject("Scripting.FileSystemObject")
Set ts = fso.GetFile(sFile).OpenAsTextStream(1, -2)
GetBoiler = ts.readall
ts.Close
End Function


All times are GMT +1. The time now is 05:32 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com