Skip to content

Commit

Permalink
Merge pull request #210 from kartolo/release/6.0.2
Browse files Browse the repository at this point in the history
Release/6.0.2
  • Loading branch information
kartolo authored Sep 11, 2020
2 parents 040340f + ac9ac77 commit fb06570
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Classes/Module/Dmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ public function createDMail_quick(array $indata)

// always plaintext
$dmail['sys_dmail']['NEW']['sendOptions'] = 1;
$dmail['sys_dmail']['NEW']['long_link_rdct_url'] = DirectMailUtility::getUrlBase((int)$this->params['page']);
$dmail['sys_dmail']['NEW']['long_link_rdct_url'] = DirectMailUtility::getUrlBase((int)$this->params['pid']);
$dmail['sys_dmail']['NEW']['subject'] = $indata['subject'];
$dmail['sys_dmail']['NEW']['type'] = 1;
$dmail['sys_dmail']['NEW']['pid'] = $this->pageinfo['uid'];
Expand Down Expand Up @@ -374,7 +374,7 @@ public function createDMail_quick(array $indata)
$message = DirectMailUtility::substUrlsInPlainText(
$message,
$this->params['long_link_mode']?'all':'76',
DirectMailUtility::getUrlBase((int)$this->params['page'])
DirectMailUtility::getUrlBase((int)$this->params['pid'])
);
}
if ($indata['breakLines']) {
Expand Down Expand Up @@ -440,7 +440,6 @@ public function compileQuickMail(array $row, $message)
->set('charset', $htmlmail->charset)
->set('mailContent', $mailContent)
->set('renderedSize', strlen($mailContent))
->set('long_link_rdct_url', $this->urlbase)
->execute();

if ($warningMsg) {
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'description' => 'Advanced Direct Mail/Newsletter mailer system with sophisticated options for personalization of emails including response statistics.',
'category' => 'module',
'shy' => 0,
'version' => '6.0.1',
'version' => '6.0.2',
'dependencies' => 'cms,tt_address',
'conflicts' => 'sr_direct_mail_ext,it_dmail_fix,plugin_mgm,direct_mail_123',
'priority' => '',
Expand Down

0 comments on commit fb06570

Please sign in to comment.