I'm sure that this is just one line of code but I can't figure it out. I have a macro that plugs in text to my email and I would like for it to send when it's done. How do I get it to do that?
| Code: |
Sub PDCINQ()
Set objDoc = Application.ActiveInspector.WordEditor
Set objSel = objDoc.Windows(1).Selection
objSel.TypeText Text:="," & vbCrLf & "Please provide service cost for the subject part number."
End Sub |