TheHonestPrussian:
Morning all,
So I have an include file, string formatted, which is supposed to go into the body of an email when the SendMail function is called.
Despite me working with #include files in order to avoid coding duplicate coding or text, this particular include file is not being inserted into my emails, despite never having had this problem prior. The Email function is being called from the EA mql4 file.
My code is as follows:
Here is the disclaimer document. The name of the file is "
Why is the emails_disclaimer.mqh file not being included in the email body?
I have also refreshed the MQL4 file as well.
Many thanks
You didn't call the email_disclaimers() function.
void master_diagnostics_email_template(){ string disclaimer=email_disclaimers(); etc...
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Morning all,
So I have an include file, string formatted, which is supposed to go into the body of an email when the SendMail function is called.
Despite me working with #include files in order to avoid coding duplicate coding or text, this particular include file is not being inserted into my emails, despite never having had this problem prior. The Email function is being called from the EA mql4 file.
My code is as follows:
Here is the disclaimer document. The name of the file is "
Why is the emails_disclaimer.mqh file not being included in the email body?
I have also refreshed the MQL4 file as well.
Many thanks