How to Include File from Plugins into Template?

plugins_url( 'file_location/relative_to.plugin', 'plugin/file/location' );, or something along those lines at least, should do it for you. Alternatively, you could work from the top down and say something like include( '/wp-content/plugins/you-plugin-name/file.php' ) to get it, whichever is easier.