Recommendation widget for socialengine using their own code The basic knowledge of socialengine is required for installing this stuff. first need to inform that, this widget is not developed in a professional manner. steps: 1.Take the user module path: application->modules->user 2.Then reach the widgets folder in user module and create widget files a.controller file b.tpl…
Author: smarttips
Web designer vacancy at technopark Trivandrum
Experienced Web designer(2-5yrs) vacancy in Aptara(US based company) Technopark trivandrum. Interested candidates can send your resume to resume.tvm@aptaracorp.com Eligilibilty Have good knowledge in HTML5, CSS and Adobe Photoshop, Adobe Illustrator..etc Minimum knowledge in JavaScript and JQuery is must. 2-5 years experience in e-learning industry. More info click
Zend/socialengine PHP developer vacancy at infopark
Zend/socialengine PHP developerr vacancy at cochin Zend/socialengine PHP developer(3+ years) vacancy in Ti Technologies at infopark,ITES Habitat cochin. Interested candidates can send your resume to hr@titechnologies.in or walk in for an interview between 10 AM- 6 PM Address ITES Habitat Center , Room No: 30B JN International Stadium Kaloor , Kochi – Pin:682017 Tel : 91 484…
Fresher/experienced PHP programmer vacancy at cochin
Fresher/experienced PHP programmer vacancy at cochin Fresher/experienced PHP vacancy in Neolink Technologies at ITES Habitat cochin. Interested candidates can send your resume to hr@neolinktechnologies.com or walk in for an interview between 10 AM- 6 PM Address ITES Habitat ,Room No. 20, Jawaharlal Nehru International Stadium, Kaloor, Cochin -682017 Telephone.: +91- 484-4025212 info@neolinktechnologies.com
Send emails in socialengine
Steps for send e-mails in socialengine: 1.Add the mailtemplate to socialengine database Eg: INSERT INTO `engine4_core_mailtemplates` (`mailtemplate_id`, `type`, `module`, `vars`) VALUES (NULL, ‘event_deleted’, ‘event’, ‘[eventname],[host],[email]’); Default socialengine sendsystem to send mails PHP zend socialengine code: $aEmailTo=array(); $db = $event->getTable()->getAdapter(); $db->beginTransaction(); $select = $event->membership()->getMembersObjectSelect(); $aMembers = $db->fetchAll($select); foreach($aMembers as $aMember) { $aEmailTo[] = $aMember[’email’]; } //event…