Hi all, I have a simple n8n workflow that get a vocal message from Telegram and then create a transcription of this vocal note and save the original message (OGG file) in a Google Drive.
All works, but now I want to send an emil with the transcription and the vocal note to an email address. I have not found a n8n node that permit me to do this.
Thamks.
Information on your n8n setup
n8n version:. 1.91.2
Database (default: SQLite): default
n8n EXECUTIONS_PROCESS setting (default: own, main): own
Running n8n via (Docker, npm, n8n cloud, desktop app): npm
So you’re trying to send a transcription, is this a file or are you just putting the text in the email body? If its a file you can just attach it, most all of the email services support it, and I think IMAP does as well. Though there is usually a file limit around 25MB
I need to get data from “Google speech” and data from “google Drive” and write a new line into a google sheet documents. I thinked that “Merge” node allowed me to create a single “output” item, but instead “merge” send 2 items so without “Code” node (that create a single item of useless output data but It permit to pass from 2 items to 1 items) the system write two items into Google Sheet Documents.
Hmmm I’m not entirely convinced you’d need the merge but I could be wrong. Also make sure you’re using the correct setting, I really only use it ever when I need to do JOINS on data. But I’m not sure what mode you’d need w/out seeing data.
Why not just do everything in the same path, why do you need to split the route. Also since you have the code node directly after, why not just handle it in there?
You can add a gmail, or outlook node to send the message. Should be able to pass the transctiption to the email body, or convert it to a file and send it as an attachment.
I can not do it in the same path because I have two nodes (google drive to store file and Extract To File to convert in base64] that require the binary file from Telegram ( by node Telegram Get File), and I don’t want to exec Telegram Get File two times.