• I was able to use the ‘Re-Send’ digest feature, but that option is no longer available after a Subscribe2 reset. Prior re-sends only showed one post per email, rather than a list of several posts from the day.

    How do you test the Daily Digest mailer with all posts from the day?

    How do you edit the email subject of the Daily Digest? Right now it reads “[Blog Name] – Once Daily Digest Email” and is ignoring the Subject Line I customized via Subscribe2->Settings.

    I am using the paid HTML version of Subscribe2, purchased two days ago.

    http://wordpress.org/extend/plugins/subscribe2/

Viewing 1 replies (of 1 total)
  • @kylekrall,

    The ‘Resend’ feature will return once 2 digests have sent. This literally resends the digest email to all of your subscribers. The ‘Preview’ function sense an example of what the email will look like based on the last active post and only to the currently logged in user.

    In order to change the title use the in-buily API filter and create a little of your own code, either as a plugin or an addition to your functions.php file in your theme.

    add_filter('s2_email_subject', 'my_filter');
    function my_filter($subject) {
    	if ( strstr($subject, "Digest Email") {
    		$subject = "Whatever I want";
    	}
    	return $subject;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Subscribe2] Daily Digest – Testing & Troubleshooting’ is closed to new replies.