def mail(self, destination, message, user): db = self.db database.save_tell(db, destination, message, user)
def mail(self, destination, message, user): """ mail stores a 'message' (tell) in the database so that 'user' can read it later via the 'checkmail' command (Bottly.checkmail). """ database.save_tell(self.db, destination, message, user)