Images
You can work with images hosted elsewhere with absolute URLs, or you can upload them to Parcel. You can use images via relative or absolute paths.
Your image path can be relative to the location of your email. For example, if you have
├── My First Email├── image1.png└── images/├── image2.jpg└── image3.jpg
you could access image1 via:
<img src="./image1.png" alt="">
and image2:
<img src="./images/image2.jpg" alt="">
You can also use absolute paths. For example, if you have
├── emails/├── My First Email├── image1.png└── Newsletter└── images/├── image2.jpg└── image3.jpg
you could access image1 via:
<img src="emails/image1.png" alt="">
and image2:
<img src="images/image2.jpg" alt="">
Right click on an image in the file explorer to copy it's path.