Alias FROM: when sending mail in Excel

  • Thread starter Thread starter Tod
  • Start date Start date
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
 
Back
Top