Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
39 | public static function getMailMessageSmtpConfigurationArray() |
||
40 | { |
||
41 | return [ |
||
42 | 'transportOptions' => [], |
||
43 | 'transportType' => TransportInterface::TYPE_SMTP, |
||
44 | 'host' => '127.0.0.1', |
||
45 | 'port' => 21, |
||
46 | 'from' => '[email protected]', |
||
47 | 'to' => '[email protected]', |
||
48 | 'cc' => '[email protected]', |
||
49 | 'bcc' => '[email protected]', |
||
50 | 'subject' => 'subject', |
||
51 | 'bodyHtml' => '<b>This is body Html</b>', |
||
52 | 'bodyText' => 'This is body text', |
||
53 | 'attachments' => [ __DIR__ . '/../data/test_view.php'] |
||
54 | ]; |
||
55 | } |
||
56 | } |
||
57 |