BetoPorto 6/10/2015, 11:03
Amigo,
Segue o vba.
Sub EnviarEmailViaNotes()
Dim notesSession As Object
Dim notesMailFile As Object
Dim notesDocument As Object
Dim notesField As Object
Dim receptores(2) As Variant
Dim oEmail As IPictureDisp
'Cria Uma lista de destinatários
receptores(0) = "****.*****@****.com.br"
receptores(1) = "*******@*****.com.br"
receptores(2) = "******@******.com.br"
'Abre uma sessão do notes, abre a base de dados e cria um documento.
Set notesSession = CreateObject("Notes.NotesSession")
Set notesMailFile = notesSession.GetDataBase("", "names.nsf") '- *.nsf = arq. com lista de contatos
Set notesDocument = notesMailFile.CreateDocument
'Configura Subject, SendTo e Abre um nomo corpo de e-mail
Set notesField = notesDocument.AppendItemValue("Subject", "Sinistros para revisão")
Set notesField = notesDocument.AppendItemValue("SendTo", receptores)
Set notesField = notesDocument.CreateRichTextItem("Body")
'Escreve o texto padrão no e-mail.
With notesField
.AppendText "********, "
.AddNewLine (2)
.AppendText "*********. "
.AddNewLine (1)
.AppendText "Att."
.AddNewLine (3)
.AppendText "*****."
.AddNewLine (4)
End With
'Anexa o arquivo
notesField = notesField.Embe(1454, "", "C:\Rotina\SINISTRO DUPLICADO\Base para revisão.xls")
notesField = notesField.EmbedObject(1454, "", notesAttachment)
'Imagem Corpo do email
'Envia o e-mail
notesDocument.Send False
'Limpa as variáveis
Set notesSession = Nothing
Set notesMailFile = Nothing
Set notesDocument = Nothing
Set notesField = Nothing
End Sub