Есть ли способ выделить жирный шрифт в тексте сообщения электронной почты MQ4? - PullRequest
0 голосов
/ 06 мая 2020

Утро

Есть ли способ установить толщину шрифта полужирный в теле письма в рамках функции SendMail моей кодировки MQL4?

Я знал, что вы можете вставить звездочки в любой конец полужирного текста, документация взята из целого rnet т.е. *This is is the bold text*:

Print("This code is executed only once in the bar started ",Time[0]);
      SendMail("VPS Notification - the account "+AccountCompany()+" is online","This is an automated email confirming that the account for "+AccountCompany()+" is online"+
      "\n"+
      "\n"+
      "\nNot happy with this trade?"+ //I want this to be bold
      "\n"+
      "\nClick on the link below and fill out a Trade Investigation Form"+
      "\n"+
      "\nhttps://eu-assets.contentstack.com/v3/assets/bltaec35894448c7261/blt4610f109a1775850/5e80359f4c08d963b4f4bedb/Pepperstone-trade-investigation-form.pdf"+
      "\n"+
      "\nPRIVACY NOTICE"+ //I want this to be bold
      "\nThis automated email is intended for the recipient stated at the address at the top of this email.");

Спасибо

...