Perfetto l'ho trovato!
Ora però non mi funziona il plugin, l'ho installato correttamente, l'ho attivato e questo è il codice, in pratica al salvataggio di un articolo deve mandare una mail:
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport( 'joomla.plugin.plugin' );
class plugin_avvertiCliente extends JPlugin {
function plugin_avvertiCliente( &$subject, $params )
{
parent::__construct( $subject, $params );
}
function onAfterContentSave( &$article, $isNew )
{
global $mainframe;
//add your plugin codes here
$from = 'info@floraviva.it';
$fromname = 'Floraviva';
$recipient[] = 'christian1488@hotmail.it';
$subject = 'Invio di prova';
$body = '<p>Check us out!</p><p><a href="
http://www.somewhere.com" target="_blank">
http://www.somewhere.com[/url]</p>';
$mode = 1;
JUtility::sendMail($from, $fromname, $recipient, $subject, $body, $mode, $cc, $bcc, $attachment, $replyto, $replytoname);
return true;
}
}