--- a/eric7/UI/EmailDialog.py Sat May 22 12:54:57 2021 +0200 +++ b/eric7/UI/EmailDialog.py Sat May 22 16:52:45 2021 +0200 @@ -146,10 +146,10 @@ """ if self.__helpDialog is None: try: - from E5Network.E5GoogleMail import GoogleMailHelp + from EricNetwork.EricGoogleMail import GoogleMailHelp helpStr = GoogleMailHelp() except ImportError: - from E5Network.E5GoogleMailHelpers import getInstallCommand + from EricNetwork.EricGoogleMailHelpers import getInstallCommand helpStr = self.tr( "<p>The Google Mail Client API is not installed." " Use <code>{0}</code> to install it.</p>" @@ -387,10 +387,10 @@ @param msg email message to be sent @type email.mime.text.MIMEBase """ - from E5Network.E5GoogleMail import E5GoogleMail + from EricNetwork.EricGoogleMail import EricGoogleMail if self.__googleMail is None: - self.__googleMail = E5GoogleMail(self) + self.__googleMail = EricGoogleMail(self) self.__googleMail.sendResult.connect(self.__gmailSendResult) self.__googleMail.sendMessage(msg)