Pityumajsaii/TitaniumEmpireV20
0
1class PresentationGenerator:2 def __init__(self):3 self.templates = {4 "Luxury": "Rolex_AntiCounterfeit_V1.pdf",5 "Pharma": "Pharma_Audit_Shield_V2.pdf",6 "Manufacturing": "Predictive_Maintenance_V1.pdf",7 "Logistics": "Global_SupplyChain_Opt_V3.pdf"8 }9 10 def send_tailored_pdf(self, client_industry):11 if client_industry in self.templates:12 print(f"📄 GENERÁLÁS: {self.templates[client_industry]} küldése...")13 print(f"📧 EMAIL: Csatolmány hozzáadva az ajánlathoz.")14 15if __name__ == "__main__":16 gen = PresentationGenerator()17 # Teszt: Küldés egy Luxus-ipari partnernek18 gen.send_tailored_pdf("Luxury")19 