RESOLVIDO >>> Olá pessoal, consegui resolver meu problema! Utilizei o método Application.SendKeys para isto. Veja abaixo como ficou o código:
Sub E_Mail_Teste()
Dim Recipient As String, Subj As String, HLink As String
Dim Recipientcc As String, Recipientbcc As String
Dim msg As String
Dim Arq As String
Dim Pasta As String
Arq = [K12].Value
Pasta = [C22].Value
Recipient = ""
Recipientcc = ""
Recipientbcc = ""
Subj = [X4].Value
msg = [X6].Value & vbNewLine & vbNewLine & [X8].Value & vbNewLine & vbNewLine & "Atenciosamente" & vbNewLine & vbNewLine & "Gilson Del Lama" & vbNewLine & "HELP CAR DEL LAMA CENTRO AUTOMOTIVO" & vbNewLine & "Rua Henrique Dumont, 261-Jd.Mosteiro" & vbNewLine & "Ribeirão Preto/ SP" & vbNewLine & "Fone : (16) 3967-1767 ou 3627-1522" & vbNewLine & "ID: 12155*1&" & vbNewLine & "Cel: (16) 9.9223-5435" & vbNewLine
msg = WorksheetFunction.Substitute(msg, vbNewLine, "%0D%0A")
HLink = "mailto:" & Recipient & "?" & "cc=" & Recipientcc _
& "&" & "bcc=" & Recipientbcc & "&"
HLink = HLink & "subject=" & Subj & "&"
HLink = HLink & "body=" & msg
ThisWorkbook.FollowHyperlink (HLink)
With Application
.Wait (Now + TimeValue("0:00:01"))
.SendKeys "%oi1", Wait = True ' AQUI INSIRO O PAPEL DE CARTA ESCOLHIDO pelas teclas ALT+o+i+1
.SendKeys "%i", Wait = True
.SendKeys "~", Wait = True
.SendKeys "C:Documents and SettingsXPMUserMeus documentosHELP CARORÇAMENTOS" & Pasta & "" & Arq & ".xls", Wait = True ' AQUI ANEXO O ARQUIVO A ENVIAR pelo caminho que deve seguir!
.SendKeys "~", Wait = True
End With
End Sub
MUITO OBRIGADO PELA ATENÇÃO! Espero ter podido colaborar com o Forum com esta dúvida!
Postado : 21/06/2014 8:22 pm