[WIP] ProcessMailer - A module for managing and sending newsletters
By
abdus, in Modules/Plugins
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By flod
I'm working on a newsletter solution with WireMailSMTP and this Newsletter Tutorial.
I only changed the lines 73 to 83 in newsletter.php, but there's a strange issue with the $subscribers array:
$testMode = isset($_POST['test_email']) ? true : false; if ($testMode) { $subscribers = wire('input')->post('test_email'); if (strpos($subscribers, ',') !== false) { $subscribers = explode(',', $subscribers); } } else { $subscribers = $pages->find('template=subscriber'); $subscribers = $subscribers->explode('email'); } if (is_array($subscribers)) { $subscribers = array_map('trim', $subscribers); } $mail = wireMail(); $mail->sendSingle(true)->to('test@domain.de')->bcc($subscribers); $mail->from('xxx@domain.de'); $mail->subject($newsletter->title); $mail->bodyHTML($html); $numSent = $mail->send(); echo json_encode(count($subscribers)); $this->halt(); The email is sent to test@domain.de but not to bcc $subscribers. Errorlog: PHP Notice: Unknown: Invalid mailbox list: <> (errflg=3) in Unknown on line 0 I'm grateful for any advice.
Greetings
Florian
-
By Orkun
Hi Guys
We are looking for an alternative to MailChimp for managing Newsletters, Subscribers, Campaigns, Lists etc... While searching for a new Tool I discovered Sendy. It looks like a decent Webapp/Newsletter-Tool to manage Newsletters, Lists, Subscribers, Campaigns etc... The Mails are sended with Amazon SES and it is way cheaper than Mailchimp. And it is also a self hosted Tool.
Has someone some Experience and Opinions on Sendy in general and also in combination with ProcessWire (Module, Integration etc...)?
Do you also know other Solutions / Alternatives rather than Mailchimp?
Kind regards
Orkun
-
By clsource
Hello,
I'm Just wondering if the Newsletter system is made in Processwire
or they use other solutions. like mailchimp.
I think should be a fun project making a newsletter system, that powers the processwire newsletter.
Using systems like
http://mandrill.com/
making a newsletter app becomes more straightfoward I think.
-
By vxda
Hi guys, im searching for an easy to use solution of a newsletter for a PW.
Preferably create pages as email addresses thru API for users.
I dunno what would be easyer for me, (im not php magician) use some api ? or is there any other easy solutuion?
If api then which one. and how to integrade it with PW so it will use my user base.
Ty
Paweł
-