Cockpit-HQ / Cockpit

Cockpit Core - Content Platform
https://getcockpit.com
Other
388 stars 47 forks source link

How to use php mailer in cockpit ?? #181

Closed abdallahhelmy99 closed 6 months ago

abdallahhelmy99 commented 7 months ago

I am using cockpit as my cms for an ecommerce web app .. I want to send a couple of mails on different events like for example when an order entry is added to Orders collection a mail shall be sent .. I want this to be done inside a specific spaces. Any help please ? I already searched a lot for how to implement this.

aheinze commented 7 months ago

crete a bootstrap.php file in your targeted space config folder, eg .spaces/myspace/config/bootstrap.php

then add event listeners there:

<?php

$app->on('content.item.save', function($modelName, $data) {...});