Search code examples
djangodjango-formsdjango-file-upload

Django email attachment filetype limit


How can I limit the type of files of the email attachments sent by my contact form to Doc, Docx, PDF?


Solution

  • There's a snippet for that.

    Usage is:

    attachment = ExtFileField(ext_whitelist=(".pdf", ".txt"))