You don't have to send anything yourself to the toggle node - you're already doing that from your tag output (at least according to your screenshot)
What I mean is, store the "true" / "false" output from it into a variable, and use that variable later to decide if an automation should occur using a switch
node
EDIT:
See rudimentary example below.
[{"id":"2825c99144e4da06","type":"tab","label":"Flow 1","disabled":false,"info":"","env":[]},{"id":"331994428e895cea","type":"inject","z":"2825c99144e4da06","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"true","payloadType":"bool","x":150,"y":340,"wires":[["a87240968ef305bc"]]},{"id":"5acf9bb884275c06","type":"inject","z":"2825c99144e4da06","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"false","payloadType":"bool","x":150,"y":440,"wires":[["a87240968ef305bc"]]},{"id":"a87240968ef305bc","type":"change","z":"2825c99144e4da06","name":"Set Variable","rules":[{"t":"set","p":"ShouldAutomate","pt":"global","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":410,"y":380,"wires":[[]]},{"id":"cfa56a42589a2b15","type":"inject","z":"2825c99144e4da06","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":180,"y":160,"wires":[["50f88c6c50658a82"]]},{"id":"d0dec19452e383bb","type":"debug","z":"2825c99144e4da06","name":"debug 3","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":580,"y":160,"wires":[]},{"id":"50f88c6c50658a82","type":"switch","z":"2825c99144e4da06","name":"","property":"ShouldAutomate","propertyType":"global","rules":[{"t":"true"}],"checkall":"true","repair":false,"outputs":1,"x":370,"y":160,"wires":[["d0dec19452e383bb"]]},{"id":"15620a9fd398be24","type":"comment","z":"2825c99144e4da06","name":"This emulates your toggle","info":"","x":190,"y":300,"wires":[]},{"id":"1f632c63741d8b09","type":"comment","z":"2825c99144e4da06","name":"Will only pass if ShouldAutomate = true","info":"","x":390,"y":120,"wires":[]}]