File path: dist/twist/Core/Models/Email/SourceParser.model.php
Namespace: Twist\Core\Models\Email
processEmailSource
— Pass in the full raw source of an email and it will parse and return as a simple usable array of data.
Name | Description |
---|---|
$strEmailSource | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strEmailSource = 'foo';
//Call the function processEmailSource with the example vars
$resSourceParser = new \Twist\Core\Models\Email\SourceParser();
$resSourceParser -> processEmailSource($strEmailSource);