ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Macro to email excel workbook with static recipient and auto subject (https://www.excelbanter.com/excel-programming/303468-macro-email-excel-workbook-static-recipient-auto-subject.html)

ryan

Macro to email excel workbook with static recipient and auto subject
 
I know this is probably an easy variation of emails I have already
read on this topic. I need to have a macro in excel that will email an
entire workbook via Outlook Express. The email recipient will never
change and consist of possibly two email addresses that need to be
filled in automatically. The macro also needs to auto-populate the
subject of the email with a cell value from the worksheet (this will
be the current date and department sending the email). I have seen
ways to do similar things on the mac and using entourage. I have no
coding skills whatsoever and am lost trying to decipher some of the
code I've seen. Also, once this macro is created is there any way to
link it to a toolbar button, instead of running the macro with a
shortcut button. All computers are running windows and office xp.
Thanks in advance for any help, I am extremely grateful.

Ron de Bruin

Macro to email excel workbook with static recipient and auto subject
 
Hi ryan

Sub Mail_workbook_1()
With ThisWorkbook
.SendMail ", "), _
Sheets("Sheet1").Range("b1").Value
End With
End Sub


More info you can find here
http://www.rondebruin.nl/sendmail.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan" wrote in message om...
I know this is probably an easy variation of emails I have already
read on this topic. I need to have a macro in excel that will email an
entire workbook via Outlook Express. The email recipient will never
change and consist of possibly two email addresses that need to be
filled in automatically. The macro also needs to auto-populate the
subject of the email with a cell value from the worksheet (this will
be the current date and department sending the email). I have seen
ways to do similar things on the mac and using entourage. I have no
coding skills whatsoever and am lost trying to decipher some of the
code I've seen. Also, once this macro is created is there any way to
link it to a toolbar button, instead of running the macro with a
shortcut button. All computers are running windows and office xp.
Thanks in advance for any help, I am extremely grateful.




ryan

Macro to email excel workbook with static recipient and auto subject
 
"Ron de Bruin" wrote in message ...
Hi ryan

Sub Mail_workbook_1()
With ThisWorkbook
.SendMail ", "), _
Sheets("Sheet1").Range("b1").Value
End With
End Sub


More info you can find here
http://www.rondebruin.nl/sendmail.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan" wrote in message om...
I know this is probably an easy variation of emails I have already
read on this topic. I need to have a macro in excel that will email an
entire workbook via Outlook Express. The email recipient will never
change and consist of possibly two email addresses that need to be
filled in automatically. The macro also needs to auto-populate the
subject of the email with a cell value from the worksheet (this will
be the current date and department sending the email). I have seen
ways to do similar things on the mac and using entourage. I have no
coding skills whatsoever and am lost trying to decipher some of the
code I've seen. Also, once this macro is created is there any way to
link it to a toolbar button, instead of running the macro with a
shortcut button. All computers are running windows and office xp.
Thanks in advance for any help, I am extremely grateful.





I need to know how to make the subject of the email auto insert from a
value in cell "A1" of the sheet being sent. This part of the macro
works for the addresses and for getting it to send..i just need to
figure out the subject line auto complete. also is there any way to
link a macro to a toolbar button not on the sheet?

Ron de Bruin

Macro to email excel workbook with static recipient and auto subject
 
Hi Ryan

I need to know how to make the subject of the email auto insert from a
value in cell "A1" of the sheet being sent.


entire workbook via Outlook Express

you want to send the whole workbook

I use this as a example
Sheets("Sheet1").Range("b1").Value

But you can use this for the activesheet
ActiveSheet.Range("b1").Value


Also is there any way to
link a macro to a toolbar button not on the sheet?


See the Excel help for "Add a button, menu, or command"
Or do you want to do it with a VBA macro?

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan" wrote in message om...
"Ron de Bruin" wrote in message ...
Hi ryan

Sub Mail_workbook_1()
With ThisWorkbook
.SendMail ", "), _
Sheets("Sheet1").Range("b1").Value
End With
End Sub


More info you can find here
http://www.rondebruin.nl/sendmail.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan" wrote in message om...
I know this is probably an easy variation of emails I have already
read on this topic. I need to have a macro in excel that will email an
entire workbook via Outlook Express. The email recipient will never
change and consist of possibly two email addresses that need to be
filled in automatically. The macro also needs to auto-populate the
subject of the email with a cell value from the worksheet (this will
be the current date and department sending the email). I have seen
ways to do similar things on the mac and using entourage. I have no
coding skills whatsoever and am lost trying to decipher some of the
code I've seen. Also, once this macro is created is there any way to
link it to a toolbar button, instead of running the macro with a
shortcut button. All computers are running windows and office xp.
Thanks in advance for any help, I am extremely grateful.





I need to know how to make the subject of the email auto insert from a
value in cell "A1" of the sheet being sent. This part of the macro
works for the addresses and for getting it to send..i just need to
figure out the subject line auto complete. also is there any way to
link a macro to a toolbar button not on the sheet?




ryan

Macro to email excel workbook with static recipient and auto subject
 
"Ron de Bruin" wrote in message ...
Hi Ryan

I need to know how to make the subject of the email auto insert from a
value in cell "A1" of the sheet being sent.


entire workbook via Outlook Express

you want to send the whole workbook

I use this as a example
Sheets("Sheet1").Range("b1").Value

But you can use this for the activesheet
ActiveSheet.Range("b1").Value


Also is there any way to
link a macro to a toolbar button not on the sheet?


See the Excel help for "Add a button, menu, or command"
Or do you want to do it with a VBA macro?

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan" wrote in message om...
"Ron de Bruin" wrote in message ...
Hi ryan

Sub Mail_workbook_1()
With ThisWorkbook
.SendMail ", "), _
Sheets("Sheet1").Range("b1").Value
End With
End Sub


More info you can find here
http://www.rondebruin.nl/sendmail.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan" wrote in message om...
I know this is probably an easy variation of emails I have already
read on this topic. I need to have a macro in excel that will email an
entire workbook via Outlook Express. The email recipient will never
change and consist of possibly two email addresses that need to be
filled in automatically. The macro also needs to auto-populate the
subject of the email with a cell value from the worksheet (this will
be the current date and department sending the email). I have seen
ways to do similar things on the mac and using entourage. I have no
coding skills whatsoever and am lost trying to decipher some of the
code I've seen. Also, once this macro is created is there any way to
link it to a toolbar button, instead of running the macro with a
shortcut button. All computers are running windows and office xp.
Thanks in advance for any help, I am extremely grateful.





I need to know how to make the subject of the email auto insert from a
value in cell "A1" of the sheet being sent. This part of the macro
works for the addresses and for getting it to send..i just need to
figure out the subject line auto complete. also is there any way to
link a macro to a toolbar button not on the sheet?




sorry ron. i had figured out the answer to my question. i just wasn't
smart enough to interpret the code for myself. sorry for nagging.
thanks again for the help. people like you are a godsend!


All times are GMT +1. The time now is 05:14 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com