graph TD
    A[Start EmailAndSocialCopyAgent] --> B[Receive Input Data]
    B --> C[Process Product Details]
    B --> D[Get Affiliate Link]
    B --> E[Get Style Guidelines]
    
    C --> F[Generate Email Copy]
    D --> F
    E --> F
    
    C --> G[Generate Social Media Copy]
    D --> G
    E --> G
    
    F --> H[Format Email Text]
    G --> I[Format Social Text]
    
    H --> J[Add Hoplink to Email]
    I --> K[Add Hoplink to Social]
    
    J --> L[Combine Contents]
    K --> L
    
    L --> M[Save as email_social_promos.txt]
    
    M --> N[End EmailAndSocialCopyAgent]