Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 03-25-2013, 10:38 PM
aqhibjaveed aqhibjaveed is offline Email Document via Commandbutton Windows 7 32bit Email Document via Commandbutton Office 2010 32bit
Novice
Email Document via Commandbutton
 
Join Date: Mar 2013
Posts: 1
aqhibjaveed is on a distinguished road
Default Email Document via Commandbutton

Hi below is my code basically if user click the command button he will get a msg box with yes no if the response is yes i want the below code to run (Save the document and send an email) please have a look



Code:
Private Sub CommandButton1_Click()
yourMsg = MsgBox("Do you want to send the report", vbInformation + vbYesNo, "SUBMIT REPORT")
If response = vbYes Then
  ActiveDocument.Save
  Dim OutApp As Object
  Dim OutMail As Object
 
  Set OutApp = CreateObject("Outlook.Application")
  Set OutMail = OutApp.CreateItem(0)
 
  On Error Resume Next
  With OutMail
    .To = "abc@gmail.com"
    .CC = ""
    .BCC = ""
    .Subject = "Sales Report"
    .Body = "Hi All!"
    .Attachments.Add ("C:\Users\aqhibj\Desktop\Formats\Sales report__V0.2.docx")
    .Display
  End With
  On Error GoTo 0
 
  Set OutMail = Nothing
  Set OutApp = Nothing
End If
End Sub
When i run the above code i am getting msg box when i click yes its not displaying mail or saving my active document. please help

Last edited by macropod; 03-25-2013 at 11:15 PM. Reason: Added code tags & formatting
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Best office document and email search tool borabora1001 Office 0 02-21-2013 11:35 PM
Macro to send document in email AnneN Word VBA 1 02-05-2013 08:08 PM
Email Document via Commandbutton email link in document to email the document mamig Word 5 05-25-2012 10:26 AM
Adding an Email Button to a Word Document maddoktor Word 0 12-01-2011 01:32 PM
Send document as email pat-ty Word 0 09-09-2010 10:23 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 02:28 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft