Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AI Room Booking Chatbot [IBM WATSON]/IBM_Cloud_Function.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def main(args):
msg['Subject']="Booking request"
phone = args.get("phone")
date = args.get("date")
time = args.get("time")
timer = args.get("time")
message = f"Hello team, \nThis is your AI Chatbot. We got a room booking request at {date} {time}. Phone number is {phone}. \n\nThanks and Regards,\nyour AI Chatbot."
msg.attach(MIMEText(message, 'plain'))
s.send_message(msg)
Expand Down