Excel 2003 and Outlook

Joined
Jan 3, 2006
Messages
5
Reaction score
0
I am using the code below to send an e-mail from excel. When using this code it sends the e-mail from my personal e-mail. I need this e-mail to go out from a group mailbox. Is there anyway to populate the from field? Possibly some other way? Thanks in advance for your help.

Sub Send_Range()

ActiveSheet.Range("I4:I37").Select


ActiveWorkbook.EnvelopeVisible = True


With ActiveSheet.MailEnvelope
.Introduction = ""
.Item.To = "test list"
.Item.Subject = ActiveSheet.Range("I2")


End With
End Sub
 

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