wont add form details to database or send me mail

/**
  * Since the install of WP-Mail-SMTP we need to make sure the FROM is 
    the same as the one specified in the plugin
  * These filters will overwrite any FROM send by other plugins.
  */
 add_filter('wp_mail_from','custom_wp_mail_from');
 function custom_wp_mail_from($email) {
     return get_option('mail_from');
  }

 add_filter('wp_mail_from_name','custom_wp_mail_from_name');
 function custom_wp_mail_from_name($name) {
    return get_option('mail_from_name');
  }

Might be this will help you….If you can make edit to the core..Use this code if you are working with gravity forms.