friends, I get this error: sendmail() missing 1 required positional argument: 'msg' | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

friends, I get this error: sendmail() missing 1 required positional argument: 'msg'

def send_mail():     server = smtplib.SMTP_SSL('smtp.gmail.com',465)     server.ehlo()     #server.starttls()     server.ehlo()     server.login('xxxxxxx','xxxxxxx')         subject = "The Shirt you want is below $15! Now is your chance to buy!"     body = "Alex, This is the moment we have been waiting for. Now is your chance to pick up the shirt of your dreams. Don't mess it up! Link here: https://www.amazon.com/Funny-Data-Systems-Business-Analyst/dp/B07FNW9FGJ/ref=sr_1_3?dchild=1&keywords=data+analyst+tshirt&qid=1626655184&sr=8-3"         msg = f"Subject: {subject}\n\n{body}"         server.sendmail(         'xxxxxxxxxxxx',         msg           )

2nd Nov 2021, 7:17 AM
Tree
Tree - avatar
2 Answers
+ 3
server.sendmail(sender_email, receiver_email, message)
2nd Nov 2021, 7:36 AM
Oma Falk
Oma Falk - avatar
0
Oma Falk thank you very much. Can I ask two other questions?
2nd Nov 2021, 7:46 AM
Tree
Tree - avatar