Send Mail on Content Submission
- Details
- Category: News And Updates
- Published on Sunday, 27 November 2011 18:49
- Written by Robert || RD-Media
- Hits: 184
We saw some requests in the Joomla forums. People that wants an email when a new article has been posted on the website, or when an article has been updated. You can use it when you have multiple managers that are allowed to add/edit content and you want to notify others when an article has been posted or updated. It can also be used to get notified when your site is hacked and contents are changed or new contents are added.
Functionality of Send Mail on Content Submission:
![]()
- Notify Users who have turned on "Receive System Emails" in user manager.
- Send to custom address (use the defined custom email addresses)
- Notify on content update (receive email when content is updated)
- Custom email address (add mulitple email addresses)
- Notify on content submission. (All custom addresses and users above)
- Updated item - Subject (customize email subject for updated items)
- Updated item - Message (customize email message for updated items)
- Send article with the email. (configurable)
- Sends in HTML mail to users and custom addresses.
- Change mailbody very easy by changing a HTML file.
Requirements for this plugin:
- Joomla 1.7.3 or later.
- Mail functionality on server
- Some HTML knowledgde if you want to edit the template.
[1.0.12] Changed PDF confirmation
- Details
- Category: News And Updates
- Published on Monday, 21 March 2011 13:59
- Written by Robert || RD-Media
- Hits: 352
We have recreated the ticket confirmation, it has a new place where it will be created.
When you have made any changes to the confirmation, you should copy the changes into the new file.
Old files:
- ../components/com_ticketmaster/models/validate.php
- ../administrator/com_ticketmaster/models/ticketbox.php
New File:
- ../administrator/com_ticketmaster/classes/confirmation.php
Both (frontend and backend) will use the same file to create the orderconfirmation as it was to much work for us recreating it again and again.
Now you have to edit it once and frontend and backend are changed properly and using exactly the same layout. It makes the program also smaller and more flexible for you and us.
NOTE: Release date is as soon as possible.
[1.0.12] Fix Welcome to your ticketmaster mainpage
- Details
- Category: News And Updates
- Published on Thursday, 17 March 2011 20:19
- Written by Robert || RD-Media
- Hits: 459
Version: 1.0.11 to 1.0.12
Description: Welocme to your ticketmaster page shows data of unpublished events.
Today a fix has been produced for the mainpage of the ticketmaster system.
The fix will also be implemented in version 1.0.12
This will fix the issue:
- Open: [website_root]/components/com_ticketmaster/models/ticketmaster.php
- Go to line 36.
SELECT a.*, COUNT(b.ticketid) AS totalevents
FROM #__ticketmaster_events AS a, #__ticketmaster_tickets AS b
WHERE a.eventid = b.eventid
AND b.published = 1
AND b.parent = 0
GROUP BY a.eventid
Change it into:
SELECT a.*, COUNT(b.ticketid) AS totalevents
FROM #__ticketmaster_events AS a, #__ticketmaster_tickets AS b
WHERE a.eventid = b.eventid
AND a.published = 1
AND b.parent = 0
GROUP BY a.eventid
Save the file again and mupload it to the same directory and this will be fixed.
Or download the fix below and upload it to the same directory.
{phocadownload view=file|id=10}

