Edit an html with some string lines
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/519417/image.png)
Thank you for your time
0 commentaires
Réponses (1)
Matt Gaidica
le 15 Fév 2021
If you just need to jam it in there:
HTMLtag = "</body>";
myText = "Please follow this link:</br><a href=...";
strrep(emailHTML, HTMLtag, myText + HTMLtag);
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!