PDA

View Full Version : Send Macro cell rang as attachment to outlook with default signature



neelio
07-07-2014, 02:01 AM
I can use a macro to send a cell range as an attachement to outlook with some test & test in the subject line, but always cant get it to use default signature. I can use a macro to send a mail with the default signature, but it doesnt attach anything, searched forever & tried lots to no avail, please help!

Code for signature & code for attachment im using below

SIGNATURE ONE

Sub Mail_Outlook_With_Signature_Html_1()
Dim OutApp As Object
Dim OutMail As Object
Dim strbody As String
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
strbody = "<H3><B>Latest Price List</B></H3>" & _
".<br>" & _
".<br>" & _
"<A HREF=""></A>" & _
"<br><br><B></B>"
On Error Resume Next
With OutMail
.Display
.To = ""
.CC = ""
.BCC = ""
.Subject = "Test"
.HTMLBody = strbody & "<br>" & .HTMLBody
.Display
End With
On Error GoTo 0
Set OutMail = Nothing
Set OutApp = Nothing
End Sub


ATTACHMENT ONE BUT NO SIG



Sub Mail_Outlook_With_Signature_Html_1()
'Working in Excel 2000-2013
Dim Source As Range
Dim Dest As Workbook
Dim wb As Workbook
Dim TempFilePath As String
Dim TempFileName As String
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim OutApp As Object
Dim OutMail As Object
Set Source = Nothing
On Error Resume Next
Set Source = Range("B16:P41").SpecialCells(xlCellTypeVisible)
On Error GoTo 0
If Source Is Nothing Then
MsgBox "The source is not a range or the sheet is protected, please correct and try again.", vbOKOnly
Exit Sub
End If
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
Set wb = ActiveWorkbook
Set Dest = Workbooks.Add(xlWBATWorksheet)
Source.Copy
With Dest.Sheets(1)
.Cells(1).PasteSpecial Paste:=8
.Cells(1).PasteSpecial Paste:=xlPasteValues
.Cells(1).PasteSpecial Paste:=xlPasteFormats
.Cells(1).Select
Application.CutCopyMode = False
End With
TempFilePath = Environ$("temp") & "\"
TempFileName = "Selection of " & wb.Name & " " & Format(Now, "dd-mmm-yy h-mm-ss")
If Val(Application.Version) < 12 Then
'You use Excel 97-2003
FileExtStr = ".xls": FileFormatNum = -4143
Else
'You use Excel 2007-2013
FileExtStr = ".xlsx": FileFormatNum = 51
End If
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
With Dest
.SaveAs TempFilePath & TempFileName & FileExtStr, FileFormat:=FileFormatNum
On Error Resume Next
With OutMail
.To = ""
.CC = ""
.BCC = ""
.Subject = "Please find latest price list"
.body = "Latest price list attached"
.Attachments.Add Dest.FullName
.Display
End With
On Error GoTo 0
.Close savechanges:=False
End With
Kill TempFilePath & TempFileName & FileExtStr
Set OutMail = Nothing
Set OutApp = Nothing
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
End Sub

westconn1
07-07-2014, 05:35 AM
the only obvious difference, as neither version specifically inserts any signature, is that the first uses an htmlbody, whereas the second does not, try changing the body type

neelio
07-07-2014, 06:24 AM
Thanks for your reply, I have tried to change the body type, but unfortunately, nothing comes up any different

westconn1
07-07-2014, 02:13 PM
there are many hits on google, this seems to be the recommended solution
www.rondebruin.nl/win/s1/outlook/signature.htm

neelio
07-08-2014, 12:42 AM
Thank you, unfortunately, the 1st section of code is mainly taken from Ron de Bruins coding, but I cant get the signature to default in when I have code running to attach certain parts of a worksheet. Ultimately I am trying to automate sending price lists but as soon as I code with an attachment the signature disappears.

westconn1
07-08-2014, 03:44 AM
did you try like
.body = "Latest price list attached" & .body

as is detailed in that link?