Closed (duplicate)
Project:
Simplenews
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
9 Aug 2007 at 23:21 UTC
Updated:
12 May 2010 at 08:21 UTC
Hi,
Simplenews really needs a "%firstname" or "%username" variable to personalize
the newsletter... having the firstname in emails is sooo much more effective.
Any hints on how to get that in?
thanks!
Comments
Comment #1
Christoph C. Cemper commenteda good hack using token seems to be here
http://drupal.org/node/87071
that should go into the module
Comment #2
aron novakIf you apply the patch here: http://drupal.org/node/171418 , you can create personalized messages.
In that way:
- set the new settings checkbox to on at the newsletters' setting page
- set the newsletters input format to php
- add this:
global $user; print $user->name;You can gather whatever field from the user object.
Comment #3
callison commentedI think it would be good if this could be even more flexible to allow for non-registered subscribers to get personalized messages, too.
Marking as duplicate - See #87071 - Personalizing newsletters.
Comment #4
claudiu.cristeaTry Views Send. It allows personalization and full recipient list filtering based on Views.