def __init__(self): AddFormCommand.__init__(self) self.create("To") self.create("CC") self.create("Subject") self.create("Body", multiline=1) self.border("~")
def __init__(self): AddFormCommand.__init__(self) self.create('To') self.create('CC') self.create('Subject') self.create('Body', multiline=1) self.border('~')
def __init__(self): AddFormCommand.__init__(self) self.create("Email Address", "*****@*****.**") self.create("Incoming Server", "imap.mydomain.com") self.create("Protocol", "IMAP", ["IMAP", "POP"]) self.create("SSL", "No", ["Yes", "No"], [True, False]) self.create("Incoming User", "Archy") self.create("Incoming Password", password=1) self.create("Outgoing Server", "smtp.mydomain.com") self.create("Outgoing Authentication", "No", ["Yes", "No"], [True, False]) self.create("TLS", "No", ["Yes", "No"], [True, False]) self.create("Outgoing User", "Archy") self.create("Outgoing Password", password=1)
def __init__(self): AddFormCommand.__init__(self) self.create('Email Address', '*****@*****.**') self.create('Incoming Server', 'imap.mydomain.com') self.create('Protocol', 'IMAP', ['IMAP', 'POP']) self.create('SSL', 'No', ['Yes', 'No'], [True, False]) self.create('Incoming User', 'Archy') self.create('Incoming Password', password = 1) self.create('Outgoing Server', 'smtp.mydomain.com') self.create('Outgoing Authentication', 'No', ['Yes', 'No'], [True, False]) self.create('TLS', 'No', ['Yes', 'No'], [True, False]) self.create('Outgoing User', 'Archy') self.create('Outgoing Password', password = 1)