• Inflexible. Does the basic feature, but cannot add subject line to form, or make different subject lines. As a result, whenever the email comes into my gmail inbox, they are all in a single thread because the subject line for every email is the same.

    Wanted to make subject line either the name, from-email, or a user-input value. But this feature doesn’t exist and all subject lines must be a single value, not dynamic one.

Viewing 1 replies (of 1 total)
  • Modify the class.cscf_contact.php file. Around line 135 change…

    $result = (wp_mail(cscf_PluginSettings::RecipientEmails(), cscf_PluginSettings::Subject(), stripslashes($message), $header));

    to…

    $subjgw = $filters->fromName." ".cscf_PluginSettings::Subject();
            $result = (wp_mail(cscf_PluginSettings::RecipientEmails(), $subjgw, stripslashes($message), $header));

    That will add the name to the subject.

Viewing 1 replies (of 1 total)
  • The topic ‘Inflexible. All subject lines are the same resulting in single thread.’ is closed to new replies.