-1

I was having issue's posting on this site so posted on Reddit.

https://www.reddit.com/r/learnpython/comments/117uumz/cant_send_text_email_to_multiple_people_just_goes/

However, no one there seems to be able to help.

Kind Regards.

vee2gee
  • 5
  • 2
  • All relevant information pertaining to your question needs to be included in your post as text, do not link to external sites. Please review [how to ask](https://stackoverflow.com/help/how-to-ask). – AlexK Feb 22 '23 at 08:23

1 Answers1

0

You recipients should be a list of strings.

recipients = ['john.doe@example.com', 'john.smith@example.co.uk']

checkout this example

  • Thanks, this worked for some reason. I also read the link you attached prior to me asking this questions but it was not working for me. I was trying my_list = 'john.doe@example.com', 'john.smith@example.co.uk'. Not sure if I did try with brackets or what not but it was not working then. Working now so great, thanks again :) – vee2gee Feb 24 '23 at 02:24