Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I have added a button to my spreadsheet that allows users to add the sheet to an email ready to send, but i really want it to populate the email address so it sends it straight to me rather than having to rely on users to input my address (they are a bit slow I'm afraid!!!) Thanks John |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
John, have a look at some of Ron de Bruin's code here to do it
http://www.rondebruin.nl/sendmail.htm#Workbook. -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "JonnieP" wrote in message ... Hi I have added a button to my spreadsheet that allows users to add the sheet to an email ready to send, but i really want it to populate the email address so it sends it straight to me rather than having to rely on users to input my address (they are a bit slow I'm afraid!!!) Thanks John |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() This code was in the Help files in Excel VBA. I substituted my ow email address(complete with the @..... inside the parentheses). I go a warning message that a program was trying to access my email and di I want to proceed. It worked. With ThisWorkbook .HasRoutingSlip = True With .RoutingSlip .Delivery = xlOneAfterAnother .Recipients = Array("Adam Bendel", _ "Jean Selva", "Bernard Gabor") .Subject = "Here is the workbook" .Message = "Here is the workbook. What do you think?" .ReturnWhenDone = True End With .Route End Wit -- DataCollecto ----------------------------------------------------------------------- DataCollector's Profile: http://www.hightechtalks.com/m36 View this thread: http://www.hightechtalks.com/t229546 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
send email to each customer email in excel sheet. | Excel Discussion (Misc queries) | |||
Code to send email to address within selection in Excel workbook | Excel Discussion (Misc queries) | |||
send wkbk as an email attachment with an email address copied from | Excel Discussion (Misc queries) | |||
how do you send a email from an specific excel column (database).. | Excel Programming | |||
Vb Macro to attach sheet and send by email | Excel Programming |