This project is a UiPath automation that reads customer registration data from an Excel file, validates the submitted product codes, and sends email notifications based on the validation result.
The automation processes customer records and ensures that each submitted code follows a predefined format. Based on the validation outcome, it automatically notifies the customer via email.
This reduces manual verification effort and ensures consistency in handling registration data.
The submitted code must follow this format:
PRD-1234AB
Where:
PRD-→ fixed prefix1234→ numeric digitsAB→ uppercase letters
If the format is correct → Valid
Otherwise → Invalid
- Read customer data from Excel file
- Iterate through each record
- Validate the registration code format
- If valid → send success email
- If invalid → send correction email
Excel file contains:
- Customer Name
- Code Submitted
- Email Address
- Valid → "Registration Successful" email
- Invalid → "Invalid Code" email
- Excel data processing
- Format-based validation logic
- Automated email notifications
- Handles multiple records in a single run
- Structured and reusable workflow
Main.xaml→ Main workflowproject.json→ Project configurationData/→ Input Excel file
- UiPath Studio
- Excel Automation
- Email Automation (Outlook / Office 365)
This automation can be used in:
- Product registration systems
- Customer onboarding validation
- Data quality verification processes
Goutham K