I'm trying to send an email attaching a PDF file using Lotus Notes.
I've been looking for the answer during the last weeks, I've found a lot of code to do it using Outlook and many webmails, but all I've find that works using Lotus Notes is the following code:
Sub Enviar_Correo()
ActiveWorkbook.SendMail _
Recipients:=" xxx@yyyy.com", _
Subject:= "EnvĂo de prueba"
End Sub
It open a new mail, with the correct destination, subject and body. But it attach the current workbook (I need a PDF file hosted in my computer), and it doesn't send the email.
I know that is not an easy question but, could somebody help me?