• Hi:
    when the email is generated, the From Email Name is converted to lowercase as is the filename. Is there a way to override that?
    Thanks

Viewing 1 replies (of 1 total)
  • chrisflink

    (@chrisflink)

    I didn’t find where it is converted to lowercase (it has caps in the database). But it annoyed me too and I was able to fix it with a small code change.

    In the file includes/class-email-before-download-process.php at line 106 change:
    if(isset($settings['from_name'])) $name = $settings['from_name'] ;
    to:
    if(isset($settings['from_name'])) $name = ucwords($settings['from_name']) ;

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin lowercasing “From Email Name” and Filename’ is closed to new replies.