• Hi Fay?al!

    Thanks for a very nice plugin! It is simple and efficient, exactly the way it should be. I hope you will maintain and update it.

    I have tweaked the code to fit my purposes and I’d like to suggest two features, namely:

    1) to include the complete post content using a [CONTENT] tag, something like this:

    $email_pnfa_body = str_replace('[CONTENT]', htmlspecialchars_decode($post->post_content), $email_pnfa_body);

    2) to allow for plain text emails (the admin then needs to remove HTML markup from the ‘Email “Body” Template’):

    $message_headers .= "Content-type: text/plain; charset=UTF-8\r\n";
    $message .= strip_tags($email_pnfa_body);

    In the current version of the plugin, the saved ‘Email “Body” Template’ has problems with international characters such as ?????? in the explicit template text (not the text inserted via the tags though), which are saved using the corresponding codes such as “?” for “?”. Not all email clients handle these codes nicely.

    In my version of the plugin I have manually added this blob of code to handle these characters:

    $message = str_replace('å','?', $message);
            $message = str_replace('ä','?', $message);
            $message = str_replace('ö','?', $message);
    
            $message = str_replace('Å','?', $message);
            $message = str_replace('Ä','?', $message);
            $message = str_replace('Ö','?', $message);
    
            $message = str_replace(' ','', $message);

    It would be nice if these was not needed. Can you perhaps use some different field in the database backend for the template that stores the characters correctly or add code that decodes the message so that the correct characters are indeed inserted before they are sent?

    I do not think pasting my tweaked version of the complete wp-post-notifier-for-all.php here is appropriate but I can send it over email if it helps at all.

    Best regards and thanks again for a great plugin!

    https://www.ads-software.com/extend/plugins/wp-post-notifier-for-all/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP Post Notifier For All] Great plugin! Feature suggestions and tweaked code’ is closed to new replies.