Phoca Download V3 Alpha Error when sending email on download

Phoca Download - download manager
JTCrimmel
Phoca Newbie
Phoca Newbie
Posts: 9
Joined: 10 Jan 2013, 18:34
Contact:

Phoca Download V3 Alpha Error when sending email on download

Post by JTCrimmel »

Fatal error: Call to undefined method JUtility::sendMail() in {SITEROOT}/administrator/components/com_phocadownload/libraries/phocadownload/mail/mail.php on line 77
I see the above error when the option to send email after a file has been downloaded is active. After disabling this option the error is not shown. All mail settings in Joomla Global Config are correct.


Thanks, Jason
svenf01
Phoca Newbie
Phoca Newbie
Posts: 1
Joined: 15 Feb 2013, 21:36

Re: Phoca Download V3 Alpha Error when sending email on down

Post by svenf01 »

Hi,
Here a solution to get it working:

Delete the Line:
JUtility::sendMail($mailfrom, $fromname, $email, $subject, $message);

Add instad:
$mail = JFactory::getMailer();
$mail->setSender($mailfrom);
$mail->setBody($message);
$mail->setSubject($subject);
$mail->addRecipient($email);
$mail->send();

With this Change it is working.
Greatings
Sven
JTCrimmel
Phoca Newbie
Phoca Newbie
Posts: 9
Joined: 10 Jan 2013, 18:34
Contact:

Re: Phoca Download V3 Alpha Error when sending email on down

Post by JTCrimmel »

Thanks Sven.
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48585
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Phoca Download V3 Alpha Error when sending email on down

Post by Jan »

Hi, thank you for the info, will be set in Beta.

Thank you, Jan
If you find Phoca extensions useful, please support the project
paulo.simas
Phoca Newbie
Phoca Newbie
Posts: 1
Joined: 15 Mar 2013, 15:13

Re: Phoca Download V3 Alpha Error when sending email on down

Post by paulo.simas »

Hey Fellas,

I solved this another way:

$mail = JMail::getInstance();
$mail->sendMail($mailfrom, $fromname, $email, $subject, $message);
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48585
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Phoca Download V3 Alpha Error when sending email on down

Post by Jan »

Hi, changed in Beta.

Jan
If you find Phoca extensions useful, please support the project
Post Reply