We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Email Tool

Ayaanarjun-5885
8 - Asteroid

Hi,

 

How to send an automatic email on a particular day of a week??

2 REPLIES 2
IraWatt
17 - Castor
17 - Castor

Hey @Ayaanarjun-5885,

If you have Alteryx Server you can schedule your workflow to run on any frequency you want. Check out this page Schedule a Workflow | Alteryx Help

FreeRangeDingo
ACE Emeritus
ACE Emeritus

You could also do it without server using a formula tool and a filter tool.  I would use the following formulas...

 

DateTimeNow() to get today's date (This column is named "Date").

DateTimeFormat([Date],"%A") to get the day of the week. (This column is named "Day").

 

After the formula tool add a filter tool that says if [Day] = "Monday" (or whatever day you want).  Then, add your email tool.  That should do it.  

FreeRangeDingo_0-1657036071859.png

 

 

Labels
Top Solution Authors