Edit an html with some string lines

조회 수: 3 (최근 30일)
zbingos
zbingos 2021년 2월 14일
답변: Matt Gaidica 2021년 2월 15일
I have an email and I want to add these lines insides it's body html. How I could combine the old html body with these word text lines in one final html. My final purpose is to reply to the fisrt mail.
Thank you for your time

답변 (1개)

Matt Gaidica
Matt Gaidica 2021년 2월 15일
If you just need to jam it in there:
HTMLtag = "</body>";
myText = "Please follow this link:</br><a href=...";
strrep(emailHTML, HTMLtag, myText + HTMLtag);

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by