Skip to content

Commit

Permalink
Update tasks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sukso96100 authored Jul 26, 2024
1 parent 590ebcb commit e279691
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion kiosksvc/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,22 @@ def send_checkin_confirm(participant_id):
subject = f"{settings.EMAIL_EVENT_NAME} 체크인 완료"
message = f"""
{participant.name}님 안녕하세요,
{settings.EMAIL_EVENT_NAME} 체크인이 완료 되었습니다.
{settings.EMAIL_SENDER_NAME} 드림.
행사 웹사이트 https://2024.ubuntu-kr.org/ko/
시간표
행사장 정보
Hello {participant.name},
You have successfully checked in for {settings.EMAIL_EVENT_NAME}.
Hope you enjoy the event!
Event website https://2024.ubuntu-kr.org/ko/
Timetable
Venue info
Best regards,
{settings.EMAIL_SENDER_NAME}
"""
Expand All @@ -107,4 +118,4 @@ def send_checkin_confirm(participant_id):
"text": f"{participant.name}님이 행사장에 도착했습니다!"
}
requests.post(public_webhook_url, json=webhook_payload)
requests.post(organizer_webhook_url, json=webhook_payload)
requests.post(organizer_webhook_url, json=webhook_payload)

0 comments on commit e279691

Please sign in to comment.