I
I
Ilya Pankov2016-05-26 13:02:10
Email
Ilya Pankov, 2016-05-26 13:02:10

Why is the mail web interface not displaying my pictures?

Hi all!
Made a letter in html format. I started testing - all tests were successfully passed: the content is displayed smoothly and clearly. I started sending out - in mobile applications and mail applications, pictures are displayed, but in the web interface of mail (any mail) they are not displayed.
Please tell me where to dig

Answer the question

In order to leave comments, you need to log in

7 answer(s)
S
Sergey Goryachev, 2016-05-26
@Pancov

Show me the letter first.

I
IPv4, 2016-05-26
@IPv4

You can check the errors in the browser console. Or open the image link from the email and see if it opens. Maybe the address of the image is incorrect.

V
vvvadimos, 2016-05-26
@vvvadimos

so mailers block images after all. somewhere there is a button "show images"

A
Alexey Zuev, 2015-08-22
@HardBIT

var array = [ { id: 1, trade: 'бла-бла-бла' } ];
console.log(array[0].trade);

Or I didn't understand the question?

E
Evgeny Ivanovich, 2015-08-22
@Pauk_Code

You get an associative array from the array and access the element by key.
This means that questions have a place to be, but mine are deleted :/

C
ColdSpirit, 2015-08-22
@ColdSpirit

I don’t know how in nodes, but in a regular javascript, what is in such brackets {} is an object, and data is obtained from it in this way: object.trade, in your case array[0].trade
https://jsfiddle.net/6toqdh1z /

T
twobomb, 2015-08-22
@twobomb

var mas =  [ { id: 1, trade: 'бла-бла-бла' } ,{ id: 2, trade: 'бла-бла-бла2' } ] ;
for(var i =0; i < mas.length ; i++)
     alert(mas[i].trade);//1, 2 или   alert(mas[i]["trade"]);//1, 2

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question