Jump to content

flod

Members
  • Posts

    28
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

2,332 profile views

flod's Achievements

Jr. Member

Jr. Member (3/6)

10

Reputation

  1. 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
  2. Anyone searching for this problem. Here is the solution: https://github.com/boschni/ProcessDateArchiver/pull/2/commits/dd8e18a750bc537a002ee1aa0f2f8bb06659c7fc
  3. What happened to field "The date field to archive on" (see below). It's not editable in PW3.
  4. Got it. The URL has to be pain text instead of a link.
  5. Is there a way to get this module to work with CKeditor? For me it is not working Only the links are visible in frontend.
  6. Right, but I don't know how to get the results in the frontend. Here is what Ryan wrote in the template file:
  7. Is there any chance to get stars and voting for comments in Uikit 3 “Regular” site/blog profile soon? Any working solution would be great.
  8. Any news on that? In my case, the problem is still there.
  9. TracyDebugger did the trick. It was the PageListImageLabel module. Thanks Macrura!
  10. No, it has to be something different.
  11. I always get this error message Warning: No templates specified. after backend login. Does anyone have a clue? Thanks for your support.
  12. That's it! Thanks a lot, guys.
  13. This only happens in a repeater image field. I have no problems with other image fields. Here is the browser error message: Pass empty string to getElementById (). And in the modules error log: https://www.xxx/page/edit/?id=15200&InputfieldFileAjax=1 Error initiating module: ProcessPageEdit - you have no permision to change this page By the way, the module PageEditPerUser is active too.
×
×
  • Create New...