Saltar al contenido

Enviar Archivo Adjunto con VBA


novo34

Recommended Posts

publicado

Amigos,

Tengo un problema con un código, espero me puedan ayudar a solucionar el problema.

Tengo excel 2010, y estoy tratando de enviar un reporte por email desde excel, intenté hacerlo con gmail directamente pero no pude insertar en el cuerpo del mensaje con texto enriquecido, es decir incertar una tabla con colores etc... por lo que lo hice con outlook, pero el problema que tengo ahora es que no me adjunta el archivo.

el codigo que utilizo es el siguiente:


Option Explicit

Sub Mail_Range_Outlook_Body()

Dim rng As Range
Dim OutApp As Object
Dim OutMail As Object
Dim ruta As Variant

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

Set rng = Nothing
On Error Resume Next
Set rng = Sheets("WebMail").Range("C4:G14").SpecialCells(xlCellTypeVisible)
On Error GoTo 0

If rng Is Nothing Then
MsgBox "La selección no es un rango o la hoja está protegida" & _
vbNewLine & "Por favor, corrija y vuelva a intentarlo.", vbOKOnly
Exit Sub
End If

Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)

ruta = ThisWorkbook.Path & "\ENTREGAS\NUEVO SISTEMA\" & Sheets("ENTREGA").Range("B1") & "\" & Sheets("ENTREGAS").Range("C1") & ".xls)"


On Error Resume Next
With OutMail
.To = Trim([C1].Value)
.CC = Trim([c2].Value)
.BCC = ""
.Subject = Trim([C3].Value)
.HtmlBody = RangetoHTML(rng)
.Attachments.Add Trim(ruta.Text)
'.Attachments.Add Trim([C15].Value '(ruta)
.Send
End If
End With
On Error GoTo 0

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

Set OutMail = Nothing
Set OutApp = Nothing
End Sub

[/CODE]

[CODE]
Option Explicit

Function RangetoHTML(rng As Range)
' Changed by Ron de Bruin 28-Oct-2006
' Working in Office 2000-2010
Dim fso As Object
Dim ts As Object
Dim TempFile As String
Dim TempWB As Workbook

TempFile = Environ$("temp") & "\" & Format(Now, "dd-mm-yy h-mm-ss") & ".html"

'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

[/CODE]

El código hace su trabajo, es decir, envía el email como debe pero no adjunta el archivo.

Espero me puedan dar una mano con esto.

Saludos.

ENVIAR POR EMAIL.rar

publicado

Hola, que es lo que contiene la celda C5 pues por lo que veo el error esta en esta linea

.Attachments.Add Trim([C15].Value   '(ruta)[/PHP]

si la celda C5 no es necesaria pues veo que el archivo que quieres adjuntar esta en "ruta" cambiala por esta y pruebas

[PHP].Attachments.Add ruta [/PHP]

Sino funciona pues sube tu archivo Ayuda Excel - Normas punto 5, para saber que es lo hay en la celda C5.

Salu2

[color=blue]- - - - - Mensaje combinado - - - - -[/color]

Ok perdon no habia visto que si pusiste adjunto, prueba asi :

[CODE]Sub Mail_Range_Outlook_Body()

Dim rng As Range
Dim OutApp As Object
Dim OutMail As Object
Dim ruta As Variant

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

Set rng = Nothing
On Error Resume Next
Set rng = Sheets("WebMail").Range("C4:G14").SpecialCells(xlCellTypeVisible)
On Error GoTo 0

If rng Is Nothing Then
MsgBox "La selección no es un rango o la hoja está protegida" & _
vbNewLine & "Por favor, corrija y vuelva a intentarlo.", vbOKOnly
Exit Sub
End If

Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)




On Error Resume Next
With OutMail
.To = Trim([C1].Value)
.CC = Trim([c2].Value)
.BCC = ""
.Subject = Trim([C3].Value)
.HtmlBody = RangetoHTML(rng)
.Attachments.Add Trim(ruta.Text)
.Attachments.Add [C15].Value
.Send

End With
On Error GoTo 0

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

Set OutMail = Nothing
Set OutApp = Nothing
End Sub


[/CODE]

  • 6 months later...
publicado

Tengo un problema similar al tuyo y me gustaría saber como lo resolviste, pues necesito adjuntar un archivo que se encuentra en una carpeta que esta en la misma carpeta del libro y que el nombre del archivo varia en función de la celda.

publicado

Hola

Concuerdo con @[uSER=53699]amunoz[/uSER]

Seria excelente ver como lo resolviste para que asi los demas podamos aprender.

Saludos.

publicado
Tengo un problema similar al tuyo y me gustaría saber como lo resolviste, pues necesito adjuntar un archivo que se encuentra en una carpeta que esta en la misma carpeta del libro y que el nombre del archivo varia en función de la celda.

Adjunto el archivo espero te seirva.

Saludos.

0 - ENVIOS.rar

Archivado

Este tema está ahora archivado y está cerrado a más respuestas.

×
×
  • Crear nuevo...

Información importante

Echa un vistazo a nuestra política de cookies para ayudarte a tener una mejor experiencia de navegación. Puedes ajustar aquí la configuración. Pulsa el botón Aceptar, si estás de acuerdo.