05.01.2024, 10:56
Hello to everyone,
I have a script for sending an email which is
message = 'Server room temperatures is ' .. tostring(value)
and is working.
Now i want to add a second value and a second text in the same mail. I have tried something like that
message = 'Server room temperatures is ' .. tostring(value) 'Server room temperatures is ' .. tostring(value1)
but without success.
The only one that working is this
message = 'Server room temperatures is' .. tostring(value) .. tostring(value1)
But i want a text between the values.
Any idea?
Thank you in advance.
I have a script for sending an email which is
message = 'Server room temperatures is ' .. tostring(value)
and is working.
Now i want to add a second value and a second text in the same mail. I have tried something like that
message = 'Server room temperatures is ' .. tostring(value) 'Server room temperatures is ' .. tostring(value1)
but without success.
The only one that working is this
message = 'Server room temperatures is' .. tostring(value) .. tostring(value1)
But i want a text between the values.
Any idea?
Thank you in advance.