I need to implement Email functionality in my Java application which will open microsoft outlook and attach a file from my directory. Has any implemented the same?
You can open the system's email client using the desktop class.
Desktop.getDesktop().mail( new URI( "mailto:address@somewhere.com" ) )