Hi Alexandre,
Do you want to load a PHP page at a specific time to send an email?
If so, you can use the following script for your timeline trigger:
function timelineEventHandler(doc, e) {
// replace HTML_Widget_1 by your widget name
var htmlWidget = doc.getElement('HTML_Widget_1');
if (htmlWidget) {
// clear embedded src before setting new url
htmlWidget.setSrcDoc('');
htmlWidget.setUrl('https://your/php/page/url');
}
}
Regards