Questions tagged [inline-images]

An inline image is an image that appears in the body of a web page or inside an html mail.

An inline image is an image that appears in the body of a web page or inside an html mail.

67 questions
1
vote
1 answer

Adding a hyperlink to an inline image on Google Appscript

I have the below code which adds an inline image to an email that gets sent from the google sheet. I am working on adding a hyperlink to the inline image. Any guidance on how to achieve this would be appreciated! var pwcURL2 =…
1
vote
1 answer

Sendmail inlineimages are also attachments but should not be

I am using the final part of this answer to to send an images from Drive as an inlineimage. https://stackoverflow.com/a/41292754/1045794 function sendPicsInline() { var picture1 = DriveApp.getFileById('0BxDqyd_bUCmvN1E3N0dQOWgycFE'); //public with…
redditor
  • 4,196
  • 1
  • 19
  • 40
1
vote
1 answer

Embedding the local external resources of an HTML page into a single HTML file

I am looking for a working way to automatically embed all local external images (i.e. images on the local file system) which are referenced in the HTML file like Obviously this will probably involve the data…
halloleo
  • 9,216
  • 13
  • 64
  • 122
1
vote
1 answer

Gmail won't display images from external sources or inline base64 from my HTML emails

I'm automating some HTML email notification to my users in my node server, sending emails using Nodemailer and one of my 'no-reply' g suite emails. In my node server, I build my HTML emails dynamically, based on content and notification type, and in…
Felipe Micali
  • 827
  • 1
  • 11
  • 25
1
vote
1 answer

Cid in images not working while sending mail with inline images

I have a mail body with an inline image set as following: I am using nodemailer to send mails. I also have a relative URL to the image. But the image is not being displayed in Outlook. Seems like cid is not working…
1
vote
0 answers

AegisImplicitMail inline attachment

We are making an app that do some process and finally send report via email to user via both port 587 & 465 . For port 567, we use standard System.Net.Mail and everything works fine. For the other port 465, we use AegisImplicitMail and we can't send…
hieuvt
  • 11
  • 2
1
vote
1 answer

Couldn't prepare mail with inline image using Thymeleaf templateEngine?

I am trying to send a html email with an inline-image attached using spring mvc and Thymeleaf. My code works without attaching the image. I get the html email successfully without image. But When I added the following line to my code I get the below…
sndu
  • 933
  • 4
  • 14
  • 40
1
vote
2 answers

Send email as html with embedded images as background

I am trying to send email as html with embedded images (not attachment) and as background. I was trying to use Xpert Mailer but their documantion has small amount of information so I didnt succeed. I was also trying to use Swiftmailer, with…
Idan
  • 11
  • 2
1
vote
1 answer

How to change InlineImages in Google Docs to PositionedImage?

The new PositionedImage class in Google Apps Script brings up a lot of questions. How does it work in relation to the current In line/Wrap text/Break text options for images? I assume its not an InlineImage, so does it wrap text? Does the image…
John Targaryen
  • 1,109
  • 1
  • 13
  • 29
1
vote
1 answer

Google Apps Script (Javascript) - findText returns location relative to inline image, not start of paragraph

I am trying to insert an image in the middle of a paragraph from the results of findText, but when there are other images before in the paragraph it doesn't work as planned. Currently, my code(partially based on the responses to this question) works…
John Targaryen
  • 1,109
  • 1
  • 13
  • 29
1
vote
0 answers

Cannot display inline images in HTML using Gmail API with RoR?

Im building a webmail client in RoR and using Gmail's API. After receiving a response from Gmail's api for a multipart email, I was able to extract the text/html portion and display it in the browser correctly. Everything looks fine except all of…
1
vote
1 answer

Inline image attachments with postmark api

I'm trying to use the postmark api to send an html email that has images in it. I know postmark supports inline image attachments but i don't know how to go about it. I've gone through the documentation but the example given there seems vague and i…
ss_millionaire
  • 429
  • 2
  • 7
  • 22
1
vote
1 answer

Mailgun sends inline images but no text. [Python+Mailgun-Api]

I'm using the python mailgun-api to send an email with an image, the email and the image arrive to the recipient with no problems, but the text i send in the "text": "Testing some Mailgun awesomness!" it doesn't, it outputs as body text the "html":…
1
vote
0 answers

Using simplepie to fetching feeds which include inlined images (encoded in base64)?

I wish to use simplepie to fetch feeds that are using inline images encoded in base64. Whenever I try fetching such feeds, simplepie gets stuck and does not fetch anything. Here is some documentation on this type of image…
Tal Galili
  • 24,605
  • 44
  • 129
  • 187
1
vote
3 answers

Convert a JavaScript Array into a JSON object

I'm modifying a Mail Merge project in Google Apps Script. The problem I'm facing is how to make the email body display inline images. Currently, all inline images present in the original email template are displayed as attachments after…