Works on: Windows 10 | Windows 8.1 | Windows 8 | Windows 7 | Windows 2012 SHA1 Hash: 5f8c4a96cb9836f315be71b7ee09e3863f10f204 Size: 11.26 KB File Format: exe
Rating: 1.956521739
out of 5
based on 23 user ratings
Downloads: 295 License: Free
MAPISend is a free software by Lexacorp Ltd and works on Windows 10, Windows 8.1, Windows 8, Windows 7, Windows 2012.
You can download MAPISend which is 11.26 KB in size and belongs to the software category E-mail. MAPISend was released on 2009-08-01 and last updated on our database on 2017-03-17 and is currently at version 1.
Thank you for downloading from SoftPaz! Your download should start any moment now. It would be great if you could rate and share:
Rate this software:
Share in your network:
MAPISend Description
The MAPISend application was designed to be a small command line utility to send messages (and attachments) via any MAPI compliant email system (such as Pegasus Mail). You can use it in batch files or macros/modules in other programs to automate emailing documents.
If you run MAPISend without any parameters, it will display a simple help screen.
One use for MAPISend is to email MS Word documents easily (which you normally cant do unless you use MS Outlook.)
To do this, just put put this Macro in your Normal.dot template file and create a menu item or toolbar button to invoke the macro:
Public Sub send_document()
Dim lngResult As Long
If Documents.Count >= 1 Then
If ActiveDocument.Saved = False Then
ActiveDocument.Save
End If
lngResult = Shell("Mapisend /E /F " & ActiveDocument.Name)
Else
MsgBox "No documents are open"
End If
End Sub