Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Smtpauth.php
Go to the documentation of this file.
1 <?php
7 
13 {
17  public function toOptionArray()
18  {
19  return [
20  ['value' => 'NONE', 'label' => 'NONE'],
21  ['value' => 'PLAIN', 'label' => 'PLAIN'],
22  ['value' => 'LOGIN', 'label' => 'LOGIN'],
23  ['value' => 'CRAM-MD5', 'label' => 'CRAM-MD5']
24  ];
25  }
26 }