I'm using the Mailchimp STS plugin for Wordpress, which uses Amazon SES for transactional emails. The plugin is set up correctly, but the default "From" name appears only as "andrew" in sent emails. Since there is no option to change this in the plugin's settings, I assume this is being grabbed from my email address (e.g. andrew@domain.com).
I found this code in the plugin:
// Plugin authors can override the potentially troublesome default
$phpmailer->From = apply_filters( 'wp_mail_from', $from_email );
$phpmailer->FromName = apply_filters( 'wp_mail_from_name', $from_name );
How can I change it so that I can display a custom "From" name (e.g. My Name, Company).
Thanks in advance for the help!