Is it possible to add header starting from page 2 ? Im using a template for page 1 which contains a background image.
$docx = new CreateDocxFromTemplate("template.docx");
$variables = [
'SIGN' => "Testing Sign"
];
# Page 1 - import from template
$docx->replaceVariableByText($variables);
# Page 2
$docx->addBreak(array('type' => 'page'));
$textOptions = [
'b' => 'on',
'color' => '567899',
'backgroundColor' => 'feac0a',
'textAlign' => 'center'
];
$header = new WordFragment($docx, 'defaultHeader');
$header->addText("Header", $textOptions);
$docx->addHeader(array('default' => $header)); # I want this starting from page 2.
$text = 'Testing 123';
$docx->addText($text);