Closed (won't fix)
Project:
Simplenews
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
30 Jan 2008 at 17:38 UTC
Updated:
5 Jun 2008 at 14:17 UTC
Can I embed nodes content in a newsletter without doing a copy paste?
It will be great if I could have a node variable something like:
title: bla bla
body:
This week winning story is: %(/node/1809)
This week winning user is: %(/user/300)
The module will automatically embed the content of the nodes inside the newsletter body and add a link to the original node.
Is it possible?
Comments
Comment #1
sutharsan commentedDoes a filter exist doing this? If so, you can apply it to Simplenews node body.
This will not be a Simplenews function.
Comment #2
tyswan commentedTy This for /node/1809:
(omit the leading slash in the path for some reason)
I found I had problems with the breadcrumbs. If you do too, then insert this code:
$crumbs = drupal_get_breadcrumb();
after saving the title,
and
drupal_set_breadcrumb($crumbs);
after restoring the title.
From: http://drupal.org/node/83431
It works for me, so I hope it helps you...
Cheers,
Tys.
Comment #3
dorien commentedWhat about the Insert View module!
Comment #4
hansrossel commentedAdding CCK nodereference fields to the Newslettter content type works for me.