1. Go to this page and download the library: Download mistralys/mailcode library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mistralys / mailcode example snippets
use Mailcode\Mailcode_Commands_Command_ShowDate;
Mailcode_Commands_Command_ShowDate::setDefaultTimezone('Europe/Paris');
use \Mailcode\Mailcode_Commands_Command_ShowURL;
use \Mailcode\Commands\Command\ShowURL\AutoTrackingID;
// The method expects a callable, which must return a string.
AutoTrackingID::setGenerator(static function(Mailcode_Commands_Command_ShowURL $command) : string
{
return 'trackingID';
});
use Mailcode\Decrypt\DecryptSettings;
DecryptSettings::getDefaultKeyName('default-key');
use Mailcode\Mailcode;
$text = '(commands here)';
// create the safeguard instance for the text
$safeguard = Mailcode::create()->createSafeguard($text);
if(!$safeguard->isValid())
{
// there are invalid commands in the text
}
// replace all commands with placeholders
$filterText = $safeguard->makeSafe();
// do any
use \Mailcode\Mailcode;
$text = '(Text with mailcode commands)';
$safeguard = Mailcode::create()->createSafeguard($text);
$safeguard->setDelimiter('__');
use \Mailcode\Mailcode;
$text = '(Mailcode commands here)';
$safeguard = Mailcode::create()->createSafeguard($text);
$placeholders = $safeguard->getPlaceholdersCollection()->getAll();
foreach($placeholders as $placeholder)
{
$string = $placeholder->getReplacementText(); // the placeholder text
$command = $placeholder->getCommand(); // the detected command instance
$original = $placeholder->getOriginalText(); // the original command text
}
use \Mailcode\Mailcode;
$text = '(Mailcode commands here)';
$safeguard = Mailcode::create()->createSafeguard($text);
$formatting = $safeguard->createFormatting($safeguard->makeSafe());
// Select to replace commands with syntax-highlighted commands
$formatting->replaceWithHTMLHighlighting();
$highlighted = $formatting->toString();
use \Mailcode\Mailcode;
$text = '(Mailcode commands here)';
$safeguard = Mailcode::create()->createSafeguard($text);
$formatting = $safeguard->createFormatting($safeguard->makeSafe());
// Get the formatter instance
$formatter = $formatting->replaceWithHTMLHighlighting();
// add a single tag to the exclusion list
$formatter->excludeTag('footer');
// add several tags at once
$formatter->excludeTags(array('footer', 'main', 'div'));
use Mailcode\Mailcode;
$styler = Mailcode::create()->createStyler();
use Mailcode\Mailcode;
$styler = Mailcode::create()->createStyler();
$css = $styler->getCSS();
use Mailcode\Mailcode;
$styler = Mailcode::create()->createStyler();
$styleTag = $styler->getStyleTag();
use Mailcode\Mailcode;
$styler = Mailcode::create()->createStyler();
$path = $styler->getStylesheetPath();
use Mailcode\Mailcode;
$styler = Mailcode::create()->createStyler();
$linkTag = $styler->getStylesheetTag('/url/to/vendor/folder');
use Mailcode\Mailcode;
$styler = Mailcode::create()->createStyler();
$stylesheetURL = $styler->getStylesheetURL('/url/to/vendor/folder');
use Mailcode\Mailcode;
$htmlString = '(HTML with Mailcode commands here)';
$safeguard = Mailcode::create()->createSafeguard($htmlString);
$formatting = $safeguard->createFormatting($safeguard->makeSafe());
// Get the formatter instance
$formatter = $formatting->formatWithMarkedVariables();
use Mailcode\Mailcode;
$htmlString = '(HTML with Mailcode commands here)';
$safeguard = Mailcode::create()->createSafeguard($htmlString);
$formatting = $safeguard->createFormatting($safeguard->makeSafe());
$formatter = $formatting->formatWithMarkedVariables();
$formatter->makeInline();
use Mailcode\Mailcode;
$string = '(Text with Mailcode commands here)';
// create the safeguarder instance for the subject string
$safeguard = Mailcode::create()->createSafeguard($string);
// create the translator
$apache = Mailcode::create()->createTranslator()->createApacheVelocity();
// convert all commands in the safeguarded string
$convertedString = $apache->translateSafeguard($safeguard);
use Mailcode\Mailcode;
use Mailcode\Mailcode_Factory;
// create the translator
$apache = Mailcode::create()->createTranslator()->createApacheVelocity();
// create a command
$command = Mailcode_Factory::set()->var('VAR.NAME', '8');
// convert it to an apache velocity command string
$apacheString = $apache->translateCommand($command);