Im not an expert on simplenews, i havent used it that much , but i cant find a way to do this:

- i want to have 2 kinds of newsletters: first one is going to be a "news mensual resume" for story content type , like an rss but directly by mail, so my users wont ask "WHAT IS RSS?!?!?!" ... xD.
And the second one is going to be an "Important Issues" newsletter with Newsletter issues content type.

But the thing is that i cant find a way to do this, maybe im wrong or havent found it yet. theres a general content type selection for newsletters but not an individual one.

I Hope this could be a nice feature and if its already posible so im just playing the fool ... xD let me know =)

Comments

xecstasyx’s picture

also i know you can set taxonomies once you create the node but isnt there another way to do it?

tanzeel’s picture

I am also looking for such solution. Did you find any way to do?

sutharsan’s picture

Status: Active » Closed (won't fix)

There will be no content type per newsletter.

smartparty’s picture

Status: Closed (won't fix) » Closed (works as designed)

Old thread but information may be still of use to many.

This is easy to do, simply modify the following php code example below and place in your simplenews-newsletter-body.tpl.php file to allow different output for different content fields where necessary.

I use this method to serve a general newsletter and a product newsletter to the same newsletter subscription groups.

<?php
	if ($node->type == 'simplenews') { 
		/* insert simplenews-newsletter-body.tpl.php content here */
	}
	if ($node->type == 'custom-content-type') {
		/* insert different simplenews-newsletter-body.tpl.php content here */
	}
?>