Inserting time/day in an email message

I’m sending an email message when an event occurs. I would like to insert in the message the time of day of the event. I tried several ways but none worked. It seems to me that Blynk.emai accepts only declared text in the message. I could not find anywhere the options of the email instruction.
Do somebody know hoe to do it?

thanks

1 Like

Have you tried searching this forum? :wink:

yes but unsuccessfully. do you have a pointer?

Well, I just searched and read through a bunch of topics about email (use the keyword Blynk.email Time Date etc. and read, read read :wink: )… and found various references to using strings for the address, header, body text, etc… then combining other string information like message text and other variable info… time, date, etc. And finally that can all be used to send those final strings via email.

Blynk.email(“Subject”,String( “Your message goes here” ) + String(currentTimeDate));