'Are there an away to format size of an image inside the template html file of APPSHEET?

workflow settings - image type: text

return: https://www.appsheet.com/image/getimageurl?appName=VistoriaPreliminar-3646590&tableName=Final&fileName=Final_Images%2F414.6.1%20Vis%C3%A3o%20panor%C3 %A2mica..020621.jpg&appVersion=1.100344&signature=9fe4ecf71636064dfdd6524a8276f43e1c33b97679c7a8cd88a831f72e2475b9f423ac43ecf554c96734a79af76527e0&width=600

the code

<html>
<head>
<title>Relatório Fotográfico</title>
<style>
.logo {
    width: 160px;
    height: 90px;
}
.image {
    width: 700px;
    height: 400px;
}
hr {
        width: 90%;
        align: center;
}
body {
        width: 210mm;
        height: 297mm;
        margin-top: 25px;
        margin-bottom: 25px;
        margin-right: 25px;
        margin-left: 25px;
}
td {
        width: 20%;
}
</style>
</head>
<table style="width:90%" align="center">
   <tr>
    <td rowspan="3"><img src="Final2_Images/Logo.jpg" class="logo"></td>
    <td align="center">Empresa:</td>
    <td align="center">Periseg</td>
    <td align="center">Regulador:</td>
    <td align="center"><<[Perito]>></td>
  </tr>
  <tr>
    <td align="center">Email:</td>
    <td align="center">[email protected]</td>
    <td align="center">Fone:</td>
    <td align="center">(51) 980259832</td>
  </tr>
    <tr>
    <td align="center">Segurado:</td>
    <td align="center"><<[Nome do segurado]>></td>
    <td align="center">Sinistro:</td>
    <td align="center"><<[Número do sinistro]>></td>
  </tr>
    </tr>
</table>
<hr>
<h3 align="center">Item</h3>
<table style="width:100%">
  <tr>
    <td align="center"><img src="&lt;&lt;[6.1 Visão panorâmica.]&gt;&gt;" class="image"></td>
  </tr>
    <tr>
    <td align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Figura 1. Visão panorâmica.</td>
  </tr>
    <tr>
    <td align="center"><img src="&lt;&lt;[6.2 Altura de planta.]&gt;&gt;" class="image"></td>
  </tr>
      <tr>
    <td align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Figura 2. Altura das plantas.</td>
  </tr>
</table>
<hr>
<p align="center">Emitido em <<_TODAY>></p>
</body>
</html>```

**when i test the template i have the result showed in the image below.**

[![enter image description here][1]][1]


  [1]: https://i.stack.imgur.com/HAYeT.png

What's wrong with this?


Solution 1:[1]

First of all, you need to find what value the Range("H2") code returns. You can use Debug.Print statements to track what values are assigned to the To property.

Second, I'd suggest using the Recipients.Add method instead of relying to the To property.

Set myItem = Application.CreateItem(olMailItem) 
Set myRecipient = myItem.Recipients.Add("Eugene Astafiev") 
myRecipient.Resolve()

Read more about that in the How To: Fill TO,CC and BCC fields in Outlook programmatically article.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Eugene Astafiev