Here is my problem:
I have this line:
strEmailBody="Your machine PC has failed to backup one or more of the
requested files. To verify which files have been backed up visit <\
\fileserver\Fileserver\Cell Folders\Backups>. We recommend that you
figure out the cause of this issue and fix it or contact Information
Technology if you need assistance. Failure to do so might put you at
risk of losing critical data. If you have any questions or if you feel
that the information provided is not correct, please contact it.help.
Thank you for your time, IT Team."
I want to include the source in there which is a variable based on
what is being backed up. I can put &source at the end of that and it
shows up, however when I try to add it somewhere in the middle it only
shows up as &source and not the actual source.
I closing the quotes before &source and then creating new one
afterwards like so:
strEmailBody="Your machine PC has failed to backup one or more of the
requested files. To verify which files have been backed up visit <\
\fileserver\Fileserver\Cell Folders\Backups>. We recommend that you
figure out the cause of this issue and fix it or contact Information
Technology if you need assistance. " &source " Failure to do so might
put you at risk of losing critical data. If you have any questions or
if you feel that the information provided is not correct, please
contact it.help. Thank you for your time, IT Team."
but that gives me an error:
expected end of statement
How do I add in there?
Thanks!