Alias FROM: when sending mail in Excel

T

Tod

The user wants to send a portion of the worksheet as the
body of an email. I found this code that does just that:

ActiveSheet.Range("A1:K71").Select
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Item.To = AddressList
.Item.Subject = "Test Subject"
.Item.Send
End With

Great. But, the email shows the user's Exchange account
name in the FROM: field. They want an alias name to show.
Does someone know how I can choose what to display in the
FROM: field of the email message?

tod
 

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