Does someone know how to convert this VBA Code to FW.
Thanks in advance
Otto
Thanks in advance
Otto
Sub Emailsenden2()
'
' Emailsenden2 Makro
'
'
Options.SendMailAttach = True
ActiveWindow.EnvelopeVisible = True
With ActiveDocument.MailEnvelope.Item
.Subject = "Testing 123"
.Recipients.Add "datron@aon.at"
End With
End Sub