Thanks,
Did you mean crypt.class.php?
I only find config.class.php in the administrator/components, but it didn't work.
When I use crypt.class.php the page will load.
I was looking around in uddeim.api.php:
function sendNewMessage($fromid, $toid, $message, $sendnotification=0, $updatelastsent=0)
I took out the "=0"'s & here's what I have for my code:
require_once("components/com_uddeim/crypt.class.php");
require_once("components/com_uddeim/uddeim.api.php");
$uddeim = new uddeIMAPI();
$fromid=$user->id;
$toid=$toid;
$message=$wildmsg;
$uddeim->sendNewMessage($fromid, $toid, $message, 1, 1);
The code runs through to the end, but I don't get any email. I've checked all settings, & I test by sending myself a PM (& I still get that email).
Is there something I'm missing? Am I way off? Is there any docs I should read?
Thanks,
-David