Moderators: jmacgreg, michael, John
fgrep -l MANUAL_PAYMENT_NOTIFICATION `find /path/to/ocs -name \*.php` $mail = &new MailTemplate('MANUAL_PAYMENT_NOTIFICATION');
$mail->setFrom($contactEmail, $contactName);
$mail->addRecipient($contactEmail, $contactName);
$mail->assignParams(array(
'schedConfName' => $schedConf->getFullTitle(),
'userFullName' => $user?$user->getFullName():('(' . Locale::translate('common.none') . ')'),
'userName' => $user?$user->getUsername():('(' . Locale::translate('common.none') . ')'),
'itemDescription' => $queuedPayment->getDescription(),
'itemCost' => $queuedPayment->getAmount(),
'itemCurrencyCode' => $queuedPayment->getCurrencyCode()
));
$mail->send();I was able to modify the template called SUBMISSION_PAPER_ACCEPT at the following URL: http://imrf.mcmaster.ca/IMRF/ocs/index. ... PER_ACCEPT
The modification, when made, showed up OK at the URL: http://imrf.mcmaster.ca/IMRF/ocs/index. ... ?paperId=3
Do you see the same thing? Am I misunderstanding the problem?
Could you describe this in a bit more detail?As admin, I can change the email templates, but they aren't the email templates that you modified as a conference manager. Also, they are not the templates that get used when I am logged in as a conference director.
Return to OCS Technical Support
Users browsing this forum: No registered users and 0 guests