I have a short question. My python program sends automatically emails to the members of some email list. I use the following syntax:
import win32com.client as win32
outlook = win32.Dispatch('outlook.application')
mail = outlook.CreateItem(0)
mail.To="emaillist@bla.bla"
Everything works fine but now one member of the list don't want to get Emails anymore. Is there any possibility to simply exclude him from the list? I don't really want to list all of the members of the long list but one manually. :( Thanks in advance.