• eCommerce
  • Social and Community Suite
  • Content Management
  • RSS Extensions
  • VirtueMart Extensions
Follow us on Twitter   Join The Factory on the New Digg  
(0) | Login | Register | Lost Password?
Username: Password:  
Home
Our Products
Joomla 1.7.x  (23) & J!1.6.x
Joomla 1.5.x (28)
Joomla 1.0.x (17)
Factory Club Extensions (7)
Drupal, Elxis, MODx (6)
Windows Gadgets for J! (11)
Free Templates (4)
All Products (92)
Documentation
Tweets
Forum
Contact Us
Terms & Conditions
How to Buy Guide
Customers FAQ's
Updates & Upgrades
About Us
The Factory Demo Server for Joomla Extensions
Money Back Guarantee
Payment Methods for Joomla Extensions
Follow us on Facebook

Latest Tweets

  • Join us at the Joomladay UK!
  • The Factory Extensions Joomla Compatibility Chart
  • Love Factory 2.4 for Joomla 1.7
  • Love Factory - Memberships [VIDEO]
  • Love Factory - Custom Fields Integration [VIDEO]
  • Love Factory - Google Maps Integration [VIDEO]
  • Love Factory - Administrator Guide [VIDEO]
  • Love Factory - Memberships
  • Collection Factory for Joomla 1.6 with CB support
  • Reverse Auction Factory 1.5.9
 
   Home   Help Search Login Register  
The Factory > Forum > Content Management Suite for Joomla CMS. > Article Factory Manager > Article Email Notifications
Pages: [1]
« previous next »
  Print  
Author Topic: Article Email Notifications  (Read 2644 times)
curious
Newbie
*
Posts: 6


View Profile
Article Email Notifications
« on: February 19, 2010, 12:27:53 am »

We have recently purchased Article Manager. Firstly, let me say this is a great tool !

However we have a small issue with the email notifications.

The preferred email for Article Submission Notices was placed into the MAIL FROM field under COMPONENTS > ARTCILE MANAGER > CONFIG > MAIL SETTINGS. (As advised in these forums so we can have emails going to this email address and not the global Joomla email)

This was not working, and still sending emails to the global Joomla MAIL FROM account.

After some research we found the following code to use in mainclass.php (also found in forum):

$email=$user->email;
$email=_ART_SET_mail_from_email!=""?_ART_SET_mail_from_email:$mainframe->getCfg('mailfrom');


This works great, but now we are getting BOTH the Article submission Notification and the Article Submitters email sent to email under Article Managers MAIL FROM field.

Any ideas?

Am using Joomla V1.5.15
« Last Edit: February 23, 2010, 03:37:39 am by curious » Logged
Erik
Administrator
Hero Member
*****
Posts: 3121



View Profile
Re: Article Email Notifications
« Reply #1 on: February 19, 2010, 09:58:02 am »

Send me a PM please with your order detail information since i cannot match your username with our customer database. Thank you!
Logged
cjay57
Newbie
*
Posts: 5


View Profile
Re: Article Email Notifications
« Reply #2 on: March 05, 2010, 10:58:10 pm »

Could we get a "public" reply to this topic since I am having the same problem with no notifications of new article submissions received or article approved being sent either?
Logged
curious
Newbie
*
Posts: 6


View Profile
Re: Article Email Notifications
« Reply #3 on: April 20, 2010, 01:05:04 am »

PM sent with order details.

Looking forward to your response.
Logged
cjay57
Newbie
*
Posts: 5


View Profile
Re: Article Email Notifications
« Reply #4 on: April 20, 2010, 01:09:13 am »

I never got a resolution to this question so have disabled the component altogether. Does me no good if it isn't going to sent notifications of new articles submitted.
Logged
bambid
Newbie
*
Posts: 2


View Profile
Re: Article Email Notifications
« Reply #5 on: April 20, 2010, 10:23:02 am »

I have the Same Problem:

I replaced
  if ($admin){
         $email=$mainframe->getCfg('mailfrom');
      }

with:
   $email = _ART_SET_mail_from_email!=""?_ART_SET_mail_from_email:$mainframe->getCfg('mailfrom');

And now both mails (ready to publish and the mail to the autor) will be sent to the email adress who i entered in the mail settings under Mail from.

and if i block a Message in the approve Article tag, then will the author not receive a mail.

how can i change this faults?

thanks bambid
Logged
hash
The Factory Staff
Hero Member
*
Posts: 1179


The Factory's Development Team member.


View Profile
Re: Article Email Notifications
« Reply #6 on: April 20, 2010, 11:09:44 am »

@curious:

I presume you've used the following code in "mainclass.php" around line 477:

Quote
$email=$user->email;
$email=_ART_SET_mail_from_email!=""?_ART_SET_mail_from_email:$mainframe->getCfg('mailfrom');

If you made this change, it's obvious no author will get any mail when he or she will submit any article; the second line just overrides the first, so "$user->email" won't be used anywhere.

@all:
Instead of that, you'll have to use the following code:
Quote
$email=$user->email;
      if ($admin)
                {
                     $email= _ART_SET_mail_from_email!=""?_ART_SET_mail_from_email:$mainframe->getCfg('mailfrom');
      }

Hope this helps all of you!

Cheers,
H.
Logged

Don't be afraid to ask dumb questions. They're more easily handled than dumb mistakes.
hash
The Factory Staff
Hero Member
*
Posts: 1179


The Factory's Development Team member.


View Profile
Re: Article Email Notifications
« Reply #7 on: April 20, 2010, 11:12:09 am »

@bambid:

same solution should work for you too

H.
Logged

Don't be afraid to ask dumb questions. They're more easily handled than dumb mistakes.
bambid
Newbie
*
Posts: 2


View Profile
Re: Article Email Notifications
« Reply #8 on: April 20, 2010, 01:39:42 pm »

thanks that works fine
Logged
curious
Newbie
*
Posts: 6


View Profile
Re: Article Email Notifications
« Reply #9 on: April 26, 2010, 11:36:25 pm »

Thanks,

Would like to confirm this has worked however as soon as the code was updated, we are no longer able to log into the front end component of this module, or see the configuration page under Components > Article Manager > Configuration.

Can you please help. This has also been a constant error we have had no permanent solution for. It would be super nice to get this module working completely so we can implement it!

As per our previous support requests, server permissions have been double checked.

Cheers !
Logged
hash
The Factory Staff
Hero Member
*
Posts: 1179


The Factory's Development Team member.


View Profile
Re: Article Email Notifications
« Reply #10 on: April 28, 2010, 01:03:26 pm »

Hi,

Please PM me some admin credentials and i'll take a look at the problem. Can't say i've expected this behavior; in fact, i can't see the logical connection betwwen the two events.

Cheers,
H.
Logged

Don't be afraid to ask dumb questions. They're more easily handled than dumb mistakes.
curious
Newbie
*
Posts: 6


View Profile
Re: Article Email Notifications
« Reply #11 on: April 28, 2010, 11:16:10 pm »

PM sent with details.

Thanks for looking into this.
Logged
hash
The Factory Staff
Hero Member
*
Posts: 1179


The Factory's Development Team member.


View Profile
Re: Article Email Notifications
« Reply #12 on: May 04, 2010, 10:17:57 am »

Hi,

This issue is caused by a conflict with the plugin called BlueFlame, which uses the same "xajax" library as our component. If you disable that plugin, everything works fine.

Cheers,
H.
Logged

Don't be afraid to ask dumb questions. They're more easily handled than dumb mistakes.
Pages: [1]
  Print  
« previous next »
 
Jump to:  

Loading...
Joomla Extension - RSS Factory Manager  Joomla Extension - EBook Factory  Joomla Extension - Briefcase Factory  Joomla Extension - Auctions Factory  Joomla Module - RSS Contextual  Joomla Module - Exchange Factory (Europe / EURO)  Joomla Module - Exchange Factory (Romania/ RON)  Joomla Custom Extensions Development   Free Joomla Extensions  Joomla Extension - RSS Factory Pro (Enhanced Version)  Joomla Virtuemart Payment Plugin - Gecad (EPayment.ro)  Joomla Module - Mosimage / Image Module  Joomla Extension - Reverse Auction Factory (Lowest Bidder Auctions)  Joomla Extension - Article Factory Manager  Joomla Module - Lavalamp Menu  Joomla Module - RSS Image Extractor  Joomla Module - Exchange Factory (Europe / EURO) for Joomla 1.0.15  Joomla Module - Exchange Factory (Romania / RON) for Joomla 1.0.15  Joomla Module - Top Movies (IMDB)   Joomla Module - EBay Latest Auctions  Auction Factory Standalone PHP script