I want to be able to automatically attach a MS Word protected form and email from within Word. Need the email address, subject line and attachment to be done automaically, and will have to turn document protection off and then back on after email has been sent.
Help! This is what I have so far...
Sub SavenEmail()
ActiveDocument.SaveAs FileName:= _
"4-7 3-2 New_Change Product Request Rev3.doc", FileFormat:= _
wdFormatDocument, LockComments:=False, Password:="", AddToRecentFiles:= _True, WritePassword:="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:= _False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False
Application.Run MacroName:="EmailSend"
Application.Run MacroName:="EmailMessageOptions"
End Sub