how do I email excell

J

JT1977

I'm assuming you're asking how to do this using macro code rather than just
manually via point and click.

Below is some code I used to generate and send a e-mail using a macro.

' Show the envelope on the ActiveWorkbook populate the specified
fields and send e-mail
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope 'Opens a blank MS Outlook e-mail letter
.Introduction = Range("U14") 'Cell U14 on the worksheet contains
the text that will go in the body of the note.
.Item.To = Range("U15") 'Cell U15 on the worksheet contains the
addresses of those to be included on the mailing.

.Item.Subject = Range("U16") 'Cell U16 on the worksheet contains
the text for the subject line of the note.

.Item.Send 'Sends the note
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top