| 622 | self.z_flag = False |
| 623 | |
| 624 | def mailgun_config(self): |
| 625 | need_mailgun = bcolors.inputcolor( |
| 626 | 'Do you want to add Mailgun to Diffgram?[Y/n] ') |
| 627 | if need_mailgun.lower() == 'y' or need_mailgun.lower() == 'yes': |
| 628 | mailgun_key = bcolors.inputcolor('Please provide the Mailgun key: ') |
| 629 | email_domain = bcolors.inputcolor('Please provide the email domain: ') |
| 630 | self.mailgun = True |
| 631 | self.mailgun_key = mailgun_key |
| 632 | self.email_domain = email_domain |
| 633 | return |
| 634 | return |
| 635 | |
| 636 | def rabbit_config(self): |
| 637 | config_rabbit = bcolors.inputcolor( |