Notifications
Clear all

MACRO ENVIAR ANEXO

3 Posts
2 Usuários
0 Reactions
1,088 Visualizações
(@fragosojp)
Posts: 101
Estimable Member
Topic starter
 

Bom dia a todos

eu tenho uma planilha para enviar email, porem gostaria de conseguir enviar anexo ja tentei algumas coisas mas ate agora nada funciona
poderiam me ajudar?

segue o código VBA que eu uso e planilha.

Sub Send_Range()

' Select the range of cells on the active worksheet.
ActiveSheet.Range("c1:e27").Select

' Show the envelope on the ActiveWorkbook.
ActiveWorkbook.EnvelopeVisible = True

' Set the optional introduction field thats adds
' some header text to the email body. It also sets
' the To and Subject lines. Finally the message
' is sent.
With ActiveSheet.MailEnvelope
.Item.To = "[email protected]"
.Item.cC = " "
.Item.Subject = ("MIRO")
.Item.Display
End With
End Sub

 
Postado : 24/03/2017 5:54 am
(@xandrinho)
Posts: 0
Estimable Member
 

Fragoso, Bom Dia!!!!

Vc esta usando o Outlook

 
Postado : 24/03/2017 6:17 am
(@fragosojp)
Posts: 101
Estimable Member
Topic starter
 

sim. uso o outlook 2010

 
Postado : 24/03/2017 6:22 am