Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: mem_postmaster - Postmaster Revamp
Posted new version
- Both first and last name fields are searched.
- Fixed the zcr unsubscribe form feature
Offline
Re: mem_postmaster - Postmaster Revamp
Does the import feature is working now please?
I went back to the old plugin until this issue will be fixed.
Offline
Re: mem_postmaster - Postmaster Revamp
Now that we have the basics covered (I think all the bugs have been sqwershed) I’m thinking about co-sponsoring a new version with the following features.
Version 2 Proposed Features
- Attachments to mass mail via a custom field in an article and the file capability on TXP
- Ten more custom fields that will only display if labeled via the Postmaster prefs.
- to send to more than one list at time, without duplicating emails for subscribers of multiple lists.
Are there any features you would like to see? Post your ideas for discussion and we’ll construct a V2 feature list. We’ll evaluate each item for cost/benefit ratio.
I’m willing to pay for development for the above two features, and will accept contributions from those interested to share the cost.
Last edited by mrdale (2009-11-10 22:11:42)
Offline
Re: mem_postmaster - Postmaster Revamp
Hi Dale,
thanks for keep taking this plugin to the next level.
Haven’t had time or chance yet to test it.
Regarding features: what about using Postmaster to create a mechanism to subscribe/unsubscribe to/from comments/posts? Too much out of the scope?
Offline
Re: mem_postmaster - Postmaster Revamp
THE BLUE DRAGON wrote:
Does the import feature is working now please?
I went back to the old plugin until this issue will be fixed.
I’m unable to reproduce import errors and others have successfully exported/imported large lists.
Offline
Re: mem_postmaster - Postmaster Revamp
No problem with import here!
My wishlist has just one item for now:
Be able to send to more than one list at time, without duplicating emails for subscribers of multiple lists.
I know this is more or less possible by creating some “dummy” lists each time before sending, but this is cumbersome and not easy for users to remember.
Thanks Manfre for the very good plugin, Mrdale for the impulse, and all the contributors !
Offline
Re: mem_postmaster - Postmaster Revamp
Yeah PascalL, I think that’s a good idea. Added to the list
Offline
Re: mem_postmaster - Postmaster Revamp
I haven’t updated to Txp 4.2 or Postmaster Revamp yet but this post, smd_if and a persistent spambot finally pushed me to make my newsletter double opt-in. I’m sure only some small changes needs to be done for it to work in Txp 4.2/Revamp.
I put these three smd_if blocks of code in a single article in it’s own “newsletter” section and after a couple of hours of testing it seems to work well:
<txp:smd_if field="urlvar:uid, urlvar:name, urlvar:email" operator="undefined, undefined, undefined">
<h2>Newsletter</h2>
<p>Subscribe to our newsletter bla bla blah!</p>
<txp:zem_contact to="myemail@mydomain.com" label="" copysender="yes" subject="Paperboy newsletter sign-up confirmation" thanks="<p>Now that that's done you should check your inbox where you will receive a confirmation email with further instructions.</p>">
<txp:zem_contact_text name="subname" label="Your name" break="" />
<txp:zem_contact_email name="subemail" label="Your email address" break="" />
<txp:zem_contact_secret label="Message" value='<txp:smd_if field="postvar:subname, postvar:subemail" operator="isused, isused" filter="/\s/" replace="%20">To complete the sign up to the Paperboy newsletter you need to click this link and confirm your name and email address: http://www.mydomain.com/newsletter/?name={smd_if_subname}&email={smd_if_subemail}</txp:smd_if>' />
<txp:zem_contact_submit label="Submit" />
</txp:zem_contact>
</txp:smd_if>
<txp:smd_if field="urlvar:name, urlvar:email" operator="defined, defined">
<h2>Newsletter sign-up confirmation</h2>
<p>Welcome back <em>{smd_if_name}</em>,</p>
<p>You are about to subscribe to the <em>Paperboy newsletter</em> using this email-address: <em>{smd_if_email}</em>.</p>
<p>You will be able to unsubscribe anytime just by clicking a link in the newsletter that gets sent out.</p>
<txp:zem_contact to="myemail@mydomain.com" label="" copysender="no" subject="New subscriber" thanks="<p><strong>Thank you</strong> for signing up bla bla blah...</p>">
<txp:zem_contact_secret name="zemSubscriberName" label="Name" value="{smd_if_name}" break="" />
<txp:zem_contact_secret name="zemSubscriberEmail" label="Email" value="{smd_if_email}" break="" />
<txp:zem_contact_secret name="zemSubscriberLists" label="Newsletter" value="newsletter1" />
<txp:zem_contact_serverinfo name="REMOTE_ADDR" label="IP number" />
<txp:zem_contact_serverinfo name="HTTP_USER_AGENT" label="Browser" />
<txp:zem_contact_submit label="Yes - subscribe!" />
</txp:zem_contact>
</txp:smd_if>
<txp:smd_if field="urlvar:uid" operator="defined">
<h2>You are now unsubscribed</h2>
<p>You were successfully removed from our database and your name and your email address has been permanently deleted.</p>
<txp:bab_pm_unsubscribe />
</txp:smd_if>
It may help someone else who needs double opt-in, or if you have any ideas how to make it better they’re welcome!
Offline
#93 2009-12-01 19:33:09
- angka
- New Member
- Registered: 2009-12-01
- Posts: 2
Re: mem_postmaster - Postmaster Revamp
Help! Everything is working great with Postmaster except for one maddening little problem that is preventing me from using it. The title of the email, once sent, is showing the ASCII for a nonbreaking space (&-#-160;) between the next-to-last and last words in the title. I don’t know why this is happening but I can’t make it not happen. Is this an error anyone else is seeing? Thanks!
Offline
Re: mem_postmaster - Postmaster Revamp
I’m also seeing it. (I’ve been seeing it as long as I’ve been using it, but I just lived with it.)
Offline
Re: mem_postmaster - Postmaster Revamp
Admin->Prefs->Advanced:
“Prevent widowed words in article titles?”
The email subject is using the article’s title, which is subject to the above setting. Disabling this setting will prevent the space character between the last 2 words of the title. I’ll add this to the list of things to fix for the next release.
Offline
#96 2009-12-01 19:44:14
- angka
- New Member
- Registered: 2009-12-01
- Posts: 2
Re: mem_postmaster - Postmaster Revamp
This worked! Seems small but was actually really vexing to me, thanks so much!
Offline