• Company
  • Blog
  • Case Studies
  • Partners
  • Contact

vtexpertswplogovtexpertswplogotransp2-white-small-2transp2-white-small-2

Menu
  • Home
  • Services –
    • Services

      Maintenance & Support

      Plans provide guidance, phone support, and training to get the most out of CRM.

      Customization

      Streamline & automate your sales, marketing and operations.

      Integrations

      CRM integration with leading third-party service providers, websites and apps.

      Migration

      Vtiger Upgrade

      Stay up to date with the latest features & security patches.

      Data Migration

      Transfer your important data from any other CRM, ERP or custom solution.

      Packages

      Monthly Support Plans

      Essential for growing businesses

      Kickstarter Packages

      Optimal solution for small businesses

      Projects & Incidents

      Recommended for updates & fixes
  • Solutions
    • Sales

      Contact Management

      Close more deals with single-page contact management.

      Opportunities

      Track stages and milestones of your deals to keep the sales process on track.

      360 View

      Contact data from every angle, including conversations, call notes.

      More ....

      Appointments, Reporting, Proposals & more..
      Note: The links in this menu are not clickable. Please contact us for more details.

      HelpDesk

      Ticketing

      Resolve every issue in the shortest possible time with powerful ticketing features.

      Service Level Agreements

      Set up trigger campaigns to send alerts when the ticket resolution time exceeds the due date.

      Automation

      Leverage automation to define priorities, statuses & assignments for tickets.

      More ....

      Canned responses, feedback, customer portal...
      Note: The links in this menu are not clickable. Please contact us for more details.

      Marketing

      Marketing Automation

      Marketing workflows with an easy drag-and-drop designer.

      Email Marketing

      Get complete email marketing features with newsletters, analytics, and more.

      Email Tracking

      Track your email performance with metrics that matter and notifications.

      More ....

      Landing pages, SMS, Analytics & more..
      Note: The links in this menu are not clickable. Please contact us for more details.
  • Extensions
    • Extension Pack

      Get Started

      Details, screenshots and videos

      Pricing

      Affordable and cost effective

      FAQ

      Pricing, licensing and compatibility

      Documentation

      Installation Instructions

      Step by step guide

      Helpdesk

      Documentation & user guides

      Extensions

      Extensions for Vtiger 8.x

      70+ Plugins with screenshots, videos & live demos

      Extensions for Vtiger 7.x

      70+ Plugins with screenshots, videos & live demos

      Extensions for Vtiger 6.x

      65+ Plugins with screenshots, videos & live demos.
  • Managed Hosting
  • Resources
    • Documentation

      User Guide

      Best practices and tips to keep your user engaged.

      Administrator Guide

      Designed to help manage and configure the CRM for all the Vtiger users.

      Video Tutorials

      Learn how to use Vtiger features with guided video tours

      Extensions

      Helpdesk

      Admin & User guides for all our Extensions.

      Recent Updates

      New Extension releases & enhacements to Vtiger.

      Development

      Contributions

      Enhanced features, fixes and extensions.

      Github

      Access to upcoming releases, patches & more.

      Official Resources

      Developer forums, code repository & more.
  • Extension List
  • Home
  • Managed Hosting
  • Extensions
    • Get Started
    • Installation Instructions
    • Pricing
    • FAQs
    • Extension List
  • Services
    • Support
    • Custom Development
    • Integrations
    • Vtiger Upgrade
    • Data Migration
  • Support Plans
    • Monthly Plans
    • Support Plans
    • Startup Packages
  • Resources
    • Helpdesk
    • Blog
    • Contact Us
    • Partners

Calculate birthday and send email in Vtiger 7.4

Categories
  • vTiger 7
  • vTiger Tips
  • vTiger Tweaks
Tags
  • Add-on
  • automated emails
  • automation
  • Birthday
  • calculate fields
  • crm
  • customization
  • integration
  • Location
  • Vtiger 7.4
  • vtiger 7.4 features
  • vtiger CRM
  • vTiger features

VTiger 7.4 introduced some new email actions functions, one of them is substring. Using the substring function, now user can calculate birthday and send email in Vtiger 7.4 using workflow.

Let’s take a look at how user can calculate a records birthday and send an automated email with birthday wishes to that client.

In order to do so, first you have to create three more fields in addition to the default Birthday field
Calculate birthday and send email in Vtiger 7.4

1- Date of birth: This fields shows the actual date of birth of the contact

2- Today – Month Date:  You have to create a text type field, that will show current month and todays date

3. Birthday – Month Date: You have to create a text type field, that will show the birthday month and date

4. Is birthday today: This is a text field, whose value will be either “Yes” or “No” depending if its contacts birthdate today or not

In order to make it work, we have to set up two workflows

  1. Workflow 1: This workflow will, update the fields (Today-Month Date, Birthday-Month Date and Is Birthday today?)
  2. Workflow2 : This workflow will send out an automated email when the value of picklist “Is Birthday Today” is set to “Yes”, wishing them happy birthday

Configuration of Workflow 1:

  1. Provide the details regarding Workflow Name, Description, Target Module and Status in Basic Information section
    Calculate birthday and send email in Vtiger 7.4
  2. In workflow trigger, choose the time interval option for “rigger Workflow On”. Choose “Daily” in “Run Workflow field” as the workflow will execute on daily basis and determine the birthdays of the contacts. Set a time on which the workflow will be executed
    Calculate birthday and send email in Vtiger 7.4
  3.  Add condition according to your requirement. In this example there is no condition configured
    Calculate birthday and send email in Vtiger 7.4
  4.  Work Actions: In work actions, user need to configure three actions
    1. Update Field “Today-Month Date”: Using substring expression, the value of the month and the date of today’s date will will be calculated in field “Today-Month Date”. The format of the value will be MM-DD, as the database reads the date in this format. The expression that we will use is “substring(string,start,end)”, in this example it is “substring(get_date(‘Today’),5,10)”
      Note: 5, 10, specifies that character whose values will be captured, in this case it is from Character5 to Character10. For example, if today is 2022-01-01 (YYYY-MM-DD), then it will capture 01-01 (MM-DD), as we configured start as 5 and end as 10 for the string
      Calculate birthday and send email in Vtiger 7.4
    2. Update field “Birthday-Month Date”: Now configure second action, use the substring expression, to determine the month and date of birthdate and update it in field “Birthday-Month Date”
    3. Update field “Is Birthday Today?”: Compare the values of fields  “Today-Month Date” with “Birthday-Month Date”. if yes then select “Yes” in “Is Birthday Today?” else “No”

Configuration of Workflow 2:

This workflow is a simpler one. This workflow will check the value of “Is Birthday Today?” field and if it is “Yes” then send an email to the contact with Birthday wishes

  1. Fill in the Basic details
  2. Configure the the workflow trigger based on time interval
    *Make sure that this workflow is executed at a later time as compared to the first workflow. As, in this example it is 10:00 AM for the second workflow and 09:00 AM for the first workflow
  3. Configure condition. If “Is Birthday Today?” is “Yes”
  4. Configure Actions for this workflow: Send email to the contact with Birthday Wishes

Working of the Workflows

When Birthday (month, date) and Today’s (month, date) is different

Calculate birthday and send email in Vtiger 7.4In this example the today’s date is  is 05-01-2022 and the workflow one is executed

Date of Birth: Date of Birth is set to 25-01-2022

Today – Month Date: After the workflow execution that value is calculated as 01-05 as today is 05 of Jan

Birthday – Month Date: After the workflow execution that value is calculated as 01-25 as contacts birthday is 25 Jan

Is birthday today: As today is different from birthday so the value of this field is set to “No”

So in this example, todays and birthday field value were not same, that is why no email will be sent

When Birthday (month, date) and Today’s (month, date) is same

Calculate birthday and send email in Vtiger 7.4In this example the today’s date is  is 05-01-2022 and the workflow one is executed

Date of Birth: Date of Birth is set to 05-01-2022

Today – Month Date: After the workflow execution that value is calculated as 01-05 as today is 05 of Jan

Birthday – Month Date: After the workflow execution that value is calculated as 01-05 as contacts birthday is 05 Jan

Is Birthday Today?: As the current date and Birthdate is same except years that is why the value of this field is set to “Yes”

So in this example, todays and birthday field values are same, that is why email is sent to the contact

Email Preview

The preview of the received email is as following

Calculate birthday and send email in Vtiger 7.4Using this tweak you can now calculate birthday and send email in Vtiger 7.4

To know more about the new features of Vtiger 7.4, visit link

You can download the VTiger 7.4 from here Download Link 

Related posts

Multi-Currency Vtiger Quotes with VTExperts IDCA (Customziation)

Multi-Currency Vtiger Quotes with VTExperts IDCA (Customziation)

Vtiger Checklists by VTExperts Introduces Role-Based Sharing

Vtiger Checklists by VTExperts Introduces Role-Based Sharing

VTExperts Vtiger CRM AI Customer Portal Chat Assistant

VTExperts Vtiger CRM AI Job Description Generator

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

EXTENSION PACK

  • Extension List
  • Pricing
  • Extension Pack Details
  • Setup Instructions
  • Documentation

SERVICES

  • Support & Consulting
  • Hosting (Dedicated & Managed)
  • Customization & Development
  • Upgrade & Migration
  • Maintenance & Ongoing Support

LINKS

  • Gmail Plugin for VTiger
  • Outlook Plugin for VTiger
  • Blog (News & Tips)
  • Extension List
  • Contact Us Form

VTExperts

  • 341 W Scott Street
    Chicago, IL 60610
    United States
[email protected]
+1 (818) 495-5557
© 2009-2026 VTExperts.com All Rights Reserved
0
Cleantalk Pixel