Smtpauth.php 595 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Config\Model\Config\Source\Email;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. class Smtpauth implements \Magento\Framework\Option\ArrayInterface
  12. {
  13. /**
  14. * @return array
  15. */
  16. public function toOptionArray()
  17. {
  18. return [
  19. ['value' => 'NONE', 'label' => 'NONE'],
  20. ['value' => 'PLAIN', 'label' => 'PLAIN'],
  21. ['value' => 'LOGIN', 'label' => 'LOGIN'],
  22. ['value' => 'CRAM-MD5', 'label' => 'CRAM-MD5']
  23. ];
  24. }
  25. }