Pegar rango de Celdas al cuerpo del correo, formato Imagen!

Expertos, buenas!

Necesito me ayuden, tengo el siguiente código, el cual pega las cedas seleccionadas, todo perfecto, pero necesito que en ves del formato celdas, que lo pegue en formato Imagen "png", ya intente cambiar el Htm por estos formatos "img, png, gif" no pega nada.

** el codigo es:::

Sub Mail_Selection_Vventas()
Dim NombreArchivo As String
Dim rng As Range
Dim Arng As Range
Dim OutApp As Object
Dim OutMail As Object
Dim strbody As String
Dim trBody As String
Dim user1 As String
Dim hora As Double
Dim saludo As String

With Application
.ScreenUpdating = False
.EnableEvents = False
End With

Set rng = Nothing
On Error Resume Next
Set rng = Sheets("Ventas").Range("A14:J27")
On Error GoTo 0
If rng Is Nothing Then
MsgBox "The selection is not a range or the sheet is protected" & _
vbNewLine & "please correct and try again.", vbOKOnly
Exit Sub
End If

With Application
.EnableEvents = False
.ScreenUpdating = False
End With
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
Set OutkAttach = OutApp.CreateItem(Attachments)
hora = (Now - Int(Now)) * 24
Select Case hora
Case 6 To 12
saludo = "<FONT face=Verdana color=#002060 size=2>.</FONT>"
Case 12 To 20
saludo = "<FONT face=Verdana color=#002060 size=2>!</FONT><br>" & _
"<FONT face=Verdana color=#002060 size=2> </FONT>"
Case Else
saludo = "<FONT face=Verdana color=#002060 size=2></FONT>" & _
"<FONT face=Verdana color=#002060 size=2> - </FONT>"
End Select
strbody = "<FONT face=Verdana color=#002060 size=2>..</FONT><br>" & _
"<br><B><FONT face=Verdana color=#002060 size=2>...:::::...</FONT></B>" & _
"<br><B><FONT face=Verdana color=#002060 size=2></FONT></B>"
On Error Resume Next
With OutMail
.To = "destino"
.CC = "en copias"
.BCC = ""
.Subject = "Info :" & " " & Format(Now, "d-m-yy - h-mm") & "hs"
.Attachments.Add (NombreArchivo)
.HTMLBody = saludo & RangetoHTML(rng) & strbody
.Display 'or use .Send
End With
On Error GoTo 0

With Application
.EnableEvents = True
.ScreenUpdating = True
End With

Set OutMail = Nothing
Set OutApp = Nothing
Range("A17:J26").Select
Selection.ClearContents
Sheets("Ventas").Select
Range("B2").Select
ActiveWorkbook.Save
End Sub

Function RangetoHTML(rng As Range)
' Changed by Ron de Bruin 28-Oct-2006
' Working in Office 2000-2013
Dim fso As Object
Dim ts As Object
Dim TempFile As String
Dim TempWB As Workbook
Dim strbody As String
TempFile = Environ$("temp") & "\" & Format(Now, "dd-mm-yy h-mm-ss") & ".htm"
'Copy the range and create a new workbook to past the data in
rng.Copy
Set TempWB = Workbooks.Add(1)
With TempWB.Sheets(1)
.Cells(1).PasteSpecial Paste:=8
.Cells(1).PasteSpecial xlPasteValues, , False, False
.Cells(1).PasteSpecial xlPasteFormats, , False, False
.Cells(1).Select
Application.CutCopyMode = False
On Error Resume Next
.DrawingObjects.Visible = True
.DrawingObjects.Delete
On Error GoTo 0
End With

'Publish the sheet to a htm file
With TempWB.PublishObjects.Add( _
SourceType:=xlSourceRange, _
Filename:=TempFile, _
Sheet:=TempWB.Sheets(1).Name, _
Source:=TempWB.Sheets(1).UsedRange.Address, _
HtmlType:=xlHtmlStatic)
.Publish (True)
End With

'Read all data from the htm file into RangetoHTML
Set fso = CreateObject("Scripting.FileSystemObject")
Set ts = fso.GetFile(TempFile).OpenAsTextStream(1, -2)
RangetoHTML = ts.readall
ts.Close
RangetoHTML = Replace(RangetoHTML, "align=center x:publishsource=", _
"align=left x:publishsource=")
'Close TempWB
TempWB.Close savechanges:=False

'Delete the htm file we used in this function
Kill TempFile

Set ts = Nothing
Set fso = Nothing
Set TempWB = Nothing

End Function

Añade tu respuesta

Haz clic para o