Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
mj mj is offline
external usenet poster
 
Posts: 78
Default VB code to generate an e-mail with an EXCEL attachment, but not se

I have the code to send directly an e-mail with the attached EXCEL document
(see below). However, I want to create the e-mail and allow the sender to
add additional info in the e-mail before sending it. Is there code for this?

Private Sub CmdSubmit_Click()
WhereTo = Range("K2")
SubjectText = "Example for " & Range("C3") & " - " & Range("C4")
ActiveWorkbook.SendMail Recipients:=WhereTo, Subject:=SubjectText

End Sub
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default VB code to generate an e-mail with an EXCEL attachment, but not se

Hi MJ

See
http://www.rondebruin.nl/mail/tips1.htm


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



"MJ" wrote in message ...
I have the code to send directly an e-mail with the attached EXCEL document
(see below). However, I want to create the e-mail and allow the sender to
add additional info in the e-mail before sending it. Is there code for this?

Private Sub CmdSubmit_Click()
WhereTo = Range("K2")
SubjectText = "Example for " & Range("C3") & " - " & Range("C4")
ActiveWorkbook.SendMail Recipients:=WhereTo, Subject:=SubjectText

End Sub



  #3   Report Post  
Posted to microsoft.public.excel.programming
mj mj is offline
external usenet poster
 
Posts: 78
Default VB code to generate an e-mail with an EXCEL attachment, but no

Ron,

I want to generate an Outlook message with the attached EXCEL document, but
NOT send it directly as it does with the sendmail method. Often, my users
want to add more to the message or attach another file before sending it. Is
there code for this?

"Ron de Bruin" wrote:

Hi MJ

See
http://www.rondebruin.nl/mail/tips1.htm


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



"MJ" wrote in message ...
I have the code to send directly an e-mail with the attached EXCEL document
(see below). However, I want to create the e-mail and allow the sender to
add additional info in the e-mail before sending it. Is there code for this?

Private Sub CmdSubmit_Click()
WhereTo = Range("K2")
SubjectText = "Example for " & Range("C3") & " - " & Range("C4")
ActiveWorkbook.SendMail Recipients:=WhereTo, Subject:=SubjectText

End Sub




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default VB code to generate an e-mail with an EXCEL attachment, but no

Have you read the tips page

Your answer is there
.SendMail "", "This is the Subject line"


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



"MJ" wrote in message ...
Ron,

I want to generate an Outlook message with the attached EXCEL document, but
NOT send it directly as it does with the sendmail method. Often, my users
want to add more to the message or attach another file before sending it. Is
there code for this?

"Ron de Bruin" wrote:

Hi MJ

See
http://www.rondebruin.nl/mail/tips1.htm


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



"MJ" wrote in message ...
I have the code to send directly an e-mail with the attached EXCEL document
(see below). However, I want to create the e-mail and allow the sender to
add additional info in the e-mail before sending it. Is there code for this?

Private Sub CmdSubmit_Click()
WhereTo = Range("K2")
SubjectText = "Example for " & Range("C3") & " - " & Range("C4")
ActiveWorkbook.SendMail Recipients:=WhereTo, Subject:=SubjectText

End Sub






  #5   Report Post  
Posted to microsoft.public.excel.programming
mj mj is offline
external usenet poster
 
Posts: 78
Default VB code to generate an e-mail with an EXCEL attachment, but no

Yes, I read your tip. Putting the "" in the address, does prevent the
message from being sent until the person selects the correct address.
However, only I know who the message should be sent to (depending upon fields
in the EXCEL form) and therefore want to include the address of my choosing.
I just don't want to send the message without them being able to add
additional info. Is their another field I can leave blank that will prevent
the message from being sent, perhaps?

MJ

"Ron de Bruin" wrote:

Have you read the tips page

Your answer is there
.SendMail "", "This is the Subject line"


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



"MJ" wrote in message ...
Ron,

I want to generate an Outlook message with the attached EXCEL document, but
NOT send it directly as it does with the sendmail method. Often, my users
want to add more to the message or attach another file before sending it. Is
there code for this?

"Ron de Bruin" wrote:

Hi MJ

See
http://www.rondebruin.nl/mail/tips1.htm


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



"MJ" wrote in message ...
I have the code to send directly an e-mail with the attached EXCEL document
(see below). However, I want to create the e-mail and allow the sender to
add additional info in the e-mail before sending it. Is there code for this?

Private Sub CmdSubmit_Click()
WhereTo = Range("K2")
SubjectText = "Example for " & Range("C3") & " - " & Range("C4")
ActiveWorkbook.SendMail Recipients:=WhereTo, Subject:=SubjectText

End Sub








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default VB code to generate an e-mail with an EXCEL attachment, but no

This is the only way with SendMail

But if you use Outlook you can use Display instead of Send
See my site for the Outlook object model examples


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



"MJ" wrote in message ...
Yes, I read your tip. Putting the "" in the address, does prevent the
message from being sent until the person selects the correct address.
However, only I know who the message should be sent to (depending upon fields
in the EXCEL form) and therefore want to include the address of my choosing.
I just don't want to send the message without them being able to add
additional info. Is their another field I can leave blank that will prevent
the message from being sent, perhaps?

MJ

"Ron de Bruin" wrote:

Have you read the tips page

Your answer is there
.SendMail "", "This is the Subject line"


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



"MJ" wrote in message ...
Ron,

I want to generate an Outlook message with the attached EXCEL document, but
NOT send it directly as it does with the sendmail method. Often, my users
want to add more to the message or attach another file before sending it. Is
there code for this?

"Ron de Bruin" wrote:

Hi MJ

See
http://www.rondebruin.nl/mail/tips1.htm


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



"MJ" wrote in message ...
I have the code to send directly an e-mail with the attached EXCEL document
(see below). However, I want to create the e-mail and allow the sender to
add additional info in the e-mail before sending it. Is there code for this?

Private Sub CmdSubmit_Click()
WhereTo = Range("K2")
SubjectText = "Example for " & Range("C3") & " - " & Range("C4")
ActiveWorkbook.SendMail Recipients:=WhereTo, Subject:=SubjectText

End Sub








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel e-mail attachment donwb Excel Discussion (Misc queries) 0 April 24th 08 11:45 PM
sending an excel attachment in an e-mail drumane Excel Discussion (Misc queries) 2 April 21st 08 04:14 PM
Excel from e-mail attachment slow D Excel Discussion (Misc queries) 0 December 29th 05 12:56 AM
Excel Spreadsheet as an E-mail attachment Margie Excel Discussion (Misc queries) 2 December 9th 04 01:27 PM


All times are GMT +1. The time now is 02:31 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"