Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a macro setup to automatically send a copy of a spreadsheet via
Lotus Notes whenever the spreadsheet is updated. However, Notes always uses my personal mailbox to send the email. Ideally, the email would be sent from a group mailbox on a different server. I have specied the different mailbox in the vba code, but Lotus still uses my personal mailbox as the default to send the emails. Any suggestions on how this can be accomplished...? Thanks, - Matty |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Any suggestions on how this can be accomplished...? I figured out how to do this. You would add a .Principal = "Your Group's Name" in the document properties area of the code: With objNotesDocument .Subject = "Your Subject" .Body = "Your Message" .DisplayFrom = "Your Group's Name" .Principal = "Your Group's Name" .sendto = "Your Mailing List" .SaveMessageOnSend = True ' save in Sent folder .send (False) End With |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sending An Email To Web-Based Lotus Notes 7 | Excel Discussion (Misc queries) | |||
How do I group worksheets (Lotus 123 function is "Sheet>Group Shee | Excel Worksheet Functions | |||
Sending Mail using Lotus Notes | Excel Programming | |||
Sending Excel sheet by Lotus Notes | Excel Programming | |||
Sending Email using Lotus Notes | Excel Programming |