[Solved] How to send emails in large quantities with PHP script and cronjobs [closed]

You should have a database table with these columns: =============== Suscribers Table =============== |id (int)|email (varchar)|sent (tinyint) |1|[email protected]|0 |2|[email protected]|0 |3|[email protected]|0 Then something like this PHP script: // DB Connection require_once ‘db.php’; // Check if we have users with a 0 sent value $query = mysql_query(“SELECT COUNT(id) FROM suscribers WHERE sent = 0”); $results = mysql_num_rows($query); … Read more

[Solved] H.323 Request Java [closed]

I don’t think a there is a publically available library that implements H.323 signaling in Java, but there are 2 libraries with a C interface that you might be able to use from Java: OPAL is OpenSource, support H.323 and has a C wrapper. The commercial Radvision H.323 SDK also has a C interface. If … Read more