Kconfig.projbuild 803 B

123456789101112131415161718192021222324252627282930313233
  1. menu "Example Configuration"
  2. config SMTP_SERVER
  3. string "Mail Server"
  4. default "smtp.googlemail.com"
  5. help
  6. Target domain for the example to connect to.
  7. config SMTP_PORT_NUMBER
  8. string "Mail port number"
  9. default "587"
  10. help
  11. Mail port number for the example to connect to.
  12. config SMTP_SENDER_MAIL
  13. string "Sender email"
  14. default "sender.email@gmail.com"
  15. help
  16. Sender's Email address
  17. config SMTP_SENDER_PASSWORD
  18. string "Sender password"
  19. default "password@123"
  20. help
  21. Sender's email password
  22. config SMTP_RECIPIENT_MAIL
  23. string "Recipient email"
  24. default "recipient.email@gmail.com"
  25. help
  26. Recipient's email
  27. endmenu