일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- depends_on
- classproperty
- github
- 우아한 테크코스 2차 합격
- 코딩테스트
- DB
- 재귀함수가 뭔가요
- github skyline
- AWS S3
- AWS
- 우아한테크코스 2차
- TypeError: 'property' object is not iterable
- METACLASS
- 갓재석
- Django
- Spring
- springboot 3.0.0
- javascript
- S3
- classmethod
- MySQL server on 'db' (115)
- python all testcode
- 프로그래머스
- depends
- EC2
- docker-compose
- 2차 코딩테스트
- docker
- python
- OperationalError
Archives
목록Mail (1)
hanbin.dev
[Django ] Django TypeError: send_mail() missing 1 required positional argument: 'from_email'
Django로 이메일 전송을 구현하고 있는데 send_mail 함수에서 위와 같은 오류가 났다. 위 오류의 내용은 send_mail의 매개변수 from_email을 안 넘겨 줬다는 소리다. from django.core.mail import send_mail send_mail( subject="Activate your DoranDoran account.", message="Please Activate your account http://localhost:8000", recipient_list=[user_instance.user.email], fail_silently=False, ) 코드는 위와 같았는데, from_email 이 없다고 오류가 난다. 그런데 django.core.mail.send_mail ..
Django
2021. 5. 22. 16:04