config.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
  9. <default>
  10. <design>
  11. <email>
  12. <header_template>design_email_header_template</header_template>
  13. <footer_template>design_email_footer_template</footer_template>
  14. </email>
  15. </design>
  16. <system>
  17. <media_storage_configuration>
  18. <allowed_resources>
  19. <email_folder>email</email_folder>
  20. </allowed_resources>
  21. </media_storage_configuration>
  22. <emails>
  23. <forgot_email_template>system_emails_forgot_email_template</forgot_email_template>
  24. <forgot_email_identity>general</forgot_email_identity>
  25. </emails>
  26. <smtp>
  27. <disable>0</disable>
  28. <host>localhost</host>
  29. <port>25</port>
  30. </smtp>
  31. </system>
  32. <trans_email>
  33. <ident_custom1>
  34. <email>custom1@example.com</email>
  35. <name>Custom 1</name>
  36. </ident_custom1>
  37. <ident_custom2>
  38. <email>custom2@example.com</email>
  39. <name>Custom 2</name>
  40. </ident_custom2>
  41. <ident_general>
  42. <email>owner@example.com</email>
  43. <name>Owner</name>
  44. </ident_general>
  45. <ident_sales>
  46. <email>sales@example.com</email>
  47. <name>Sales</name>
  48. </ident_sales>
  49. <ident_support>
  50. <email>support@example.com</email>
  51. <name>CustomerSupport</name>
  52. </ident_support>
  53. </trans_email>
  54. </default>
  55. </config>