Envio Email
Como puedo enviar un archivo adjunto por email utilice dentro de un formulario:
strProfile = "Outlook"
*strPassword = "passwordperfil"
strRecipient = "[email protected]" &&"[email protected]"
strSubject = "HOLA" &&"Asunto"
strBody = "Este es el mensaje..."
stradjunto= "c:SILOGPRAUNO.TXT" && indicar la ruta
theApp = CreateObject("Outlook.Application")
theNameSpace = theApp.GetNameSpace("MAPI")
theNameSpace.Logon(strProfile)
theMailItem = theApp.CreateItem(0)
theMailItem.Recipients.Add( strRecipient )
theMailItem.Subject = strSubject
theMailItem.Body = strBody
theMailItem.CC=""
theMailItem.attachments.Add (stradjunto) && lo adjunta al mail.
theMailItem.Send
theNameSpace.Logoff
me saca error
strProfile = "Outlook"
*strPassword = "passwordperfil"
strRecipient = "[email protected]" &&"[email protected]"
strSubject = "HOLA" &&"Asunto"
strBody = "Este es el mensaje..."
stradjunto= "c:SILOGPRAUNO.TXT" && indicar la ruta
theApp = CreateObject("Outlook.Application")
theNameSpace = theApp.GetNameSpace("MAPI")
theNameSpace.Logon(strProfile)
theMailItem = theApp.CreateItem(0)
theMailItem.Recipients.Add( strRecipient )
theMailItem.Subject = strSubject
theMailItem.Body = strBody
theMailItem.CC=""
theMailItem.attachments.Add (stradjunto) && lo adjunta al mail.
theMailItem.Send
theNameSpace.Logoff
me saca error
Respuesta de falvarez
1