How do I store html page in a xml file?

前端 未结 4 2235
[愿得一人]
[愿得一人] 2020-12-11 16:57

I have a small application written in c# as a console app that I want to use to send an email. I was planning on storing the email inside an xml file along with other inform

4条回答
  •  庸人自扰
    2020-12-11 17:10

    Use a CDATA section, that will contain your email HTML code :

    
    
      
        
              My title
              

    Hello world

    ]]>

提交回复
热议问题