2017-01-30 17 views
13

में छोटे एम्बेडेड इनलाइन छवियों को अवरोधित मैं अपने सदस्यों को ईमेल भेजने रहा हूँ और जीमेल की तरह मैं ईमेल में जगह छवियों ब्लॉक कर रहा है यह लग रहा है। ये एक img टैग में आधार 64 एन्कोडेड स्ट्रिंग के रूप में एम्बेडेड हैं। मैंने जीमेल के बारे में कई धागे ऑनलाइन देखे हैं जो छवियां नहीं भेज रहे हैं लेकिन कुछ भी नहीं मिला है जो मदद करता है। यहां कुछ ऐसी चीजें हैं जिन्हें मैंने अभी तक आजमाया है। (सेटिंग आइकन के माध्यम से) 1. Gmail में सक्षम बाहरी चित्रों 2. करने के लिए छवियों के आकार को कम 8000 बाइट्स से कम (Outlook.com छवियों ~ 15000 बाइट्स भेज नहीं होगा)जीमेल ईमेल टेम्पलेट

मैं ठीक छवियों प्राप्त अगर मैं outlook.com ईमेल पते पर भेजता हूं, लेकिन जीमेल में आईएमजी टैग का स्रोत खाली है, और ईमेल में कोई छवियां दिखाई नहीं देती हैं। मैं https://putsmail.com उपयोग कर रहा हूँ परीक्षण/मेरे ईमेल भेजने के लिए है, इसलिए मुझे पता है कि इस मुद्दे को SendGrid (मेरा ईमेल सेवा भेजने) या अपने आवेदन के साथ एक समस्या नहीं है।

यहां मेरे टेम्पलेट्स में से एक है। मैं litmuss से एक ईमेल टेम्पलेट का उपयोग कर रहा हूँ। नीचे दी गई सभी चीजें मूल रूप से डिफ़ॉल्ट हैं जिन्हें मैंने छवियों और ईमेल निकाय में कुछ अतिरिक्त टेक्स्ट जैसे अतिरिक्त जानकारी को छोड़कर छोड़ दिया है।

यहाँ है कि सही putsmail में कॉपी किया जा सकता है और परीक्षण करने के लिए भेजा जा छवि डेटा के साथ एक पूर्ण टेम्पलेट के साथ एक jsfiddle है! जीमेल छवियों को क्यों नहीं भेजता है, इस बारे में कोई मदद या जानकारी बहुत अच्छी होगी!

<!DOCTYPE html> 
 
<html> 
 
<head> 
 
    <title></title> 
 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
 
    <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 
 
    <style type="text/css"> 
 
     /* FONTS */ 
 
     @@media screen { 
 
      @@font-face { 
 
       font-family: 'Lato'; 
 
       font-style: normal; 
 
       font-weight: 400; 
 
       src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v11/qIIYRU-oROkIk8vfvxw6QvesZW2xOQ-xsNqO47m55DA.woff) format('woff'); 
 
      } 
 

 
      @@font-face { 
 
       font-family: 'Lato'; 
 
       font-style: normal; 
 
       font-weight: 700; 
 
       src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v11/qdgUG4U09HnJwhYI-uK18wLUuEpTyoUstqEm5AMlJo4.woff) format('woff'); 
 
      } 
 

 
      @@font-face { 
 
       font-family: 'Lato'; 
 
       font-style: italic; 
 
       font-weight: 400; 
 
       src: local('Lato Italic'), local('Lato-Italic'), url(https://fonts.gstatic.com/s/lato/v11/RYyZNoeFgb0l7W3Vu1aSWOvvDin1pK8aKteLpeZ5c0A.woff) format('woff'); 
 
      } 
 

 
      @@font-face { 
 
       font-family: 'Lato'; 
 
       font-style: italic; 
 
       font-weight: 700; 
 
       src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(https://fonts.gstatic.com/s/lato/v11/HkF_qI1x_noxlxhrhMQYELO3LdcAZYWl9Si6vvxL-qU.woff) format('woff'); 
 
      } 
 
     } 
 

 
     /* CLIENT-SPECIFIC STYLES */ 
 
     body, table, td, a { 
 
      -webkit-text-size-adjust: 100%; 
 
      -ms-text-size-adjust: 100%; 
 
     } 
 

 
     table, td { 
 
      mso-table-lspace: 0pt; 
 
      mso-table-rspace: 0pt; 
 
     } 
 

 
     img { 
 
      -ms-interpolation-mode: bicubic; 
 
     } 
 

 
     /* RESET STYLES */ 
 
     img { 
 
      border: 0; 
 
      height: auto; 
 
      line-height: 100%; 
 
      outline: none; 
 
      text-decoration: none; 
 
     } 
 

 
     table { 
 
      border-collapse: collapse !important; 
 
     } 
 

 
     body { 
 
      height: 100% !important; 
 
      margin: 0 !important; 
 
      padding: 0 !important; 
 
      width: 100% !important; 
 
     } 
 

 
     /* iOS BLUE LINKS */ 
 
     a[x-apple-data-detectors] { 
 
      color: inherit !important; 
 
      text-decoration: none !important; 
 
      font-size: inherit !important; 
 
      font-family: inherit !important; 
 
      font-weight: inherit !important; 
 
      line-height: inherit !important; 
 
     } 
 

 
     /* MOBILE STYLES */ 
 
     @@media screen and (max-width:600px) { 
 
      h1 { 
 
       font-size: 32px !important; 
 
       line-height: 32px !important; 
 
      } 
 
     } 
 

 
     /* ANDROID CENTER FIX */ 
 
     div[style*="margin: 16px 0;"] { 
 
      margin: 0 !important; 
 
     } 
 
    </style> 
 
</head> 
 
<body style="background-color: #f4f4f4; margin: 0 !important; padding: 0 !important;"> 
 

 
    <!-- HIDDEN PREHEADER TEXT --> 
 
    <div style="display: none; font-size: 1px; color: #fefefe; line-height: 1px; font-family: 'Lato', Helvetica, Arial, sans-serif; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden;"> 
 
     We're thrilled you created a YogaBandy event! Get ready for members to register. 
 
    </div> 
 

 
    <table border="0" cellpadding="0" cellspacing="0" width="100%"> 
 
     <!-- LOGO --> 
 
     <tr> 
 
      <td bgcolor="#16749F" align="center"> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       <table align="center" border="0" cellspacing="0" cellpadding="0" width="600"> 
 
       <tr> 
 
       <td align="center" valign="top" width="600"> 
 
       <![endif]--> 
 
       <table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;"> 
 
        <tr> 
 
         <td align="center" valign="top" style="padding: 40px 10px 40px 10px;"> 
 
          <a href="https://YogaBandy.com" target="_blank"> 
 
           <img alt="Logo" src="http://litmuswww.s3.amazonaws.com/community/template-gallery/ceej/logo.png" width="40" height="40" style="display: block; width: 40px; max-width: 40px; min-width: 40px; font-family: 'Lato', Helvetica, Arial, sans-serif; color: #ffffff; font-size: 18px;" border="0"> 
 
          </a> 
 
         </td> 
 
        </tr> 
 
       </table> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       </td> 
 
       </tr> 
 
       </table> 
 
       <![endif]--> 
 
      </td> 
 
     </tr> 
 
     <!-- HERO --> 
 
     <tr> 
 
      <td bgcolor="#16749F" align="center" style="padding: 0px 10px 0px 10px;"> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       <table align="center" border="0" cellspacing="0" cellpadding="0" width="600"> 
 
       <tr> 
 
       <td align="center" valign="top" width="600"> 
 
       <![endif]--> 
 
       <table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;"> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="center" valign="top" style="padding: 40px 20px 20px 20px; border-radius: 4px 4px 0px 0px; color: #111111; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 48px; font-weight: 400; letter-spacing: 4px; line-height: 48px;"> 
 
          <h2 style="font-size: 48px; font-weight: 400; margin: 0;">Event Created</h2> 
 
         </td> 
 
        </tr> 
 
       </table> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       </td> 
 
       </tr> 
 
       </table> 
 
       <![endif]--> 
 
      </td> 
 
     </tr> 
 
     <!-- COPY BLOCK --> 
 
     <tr> 
 
      <td bgcolor="#f4f4f4" align="center" style="padding: 0px 10px 0px 10px;"> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       <table align="center" border="0" cellspacing="0" cellpadding="0" width="600"> 
 
       <tr> 
 
       <td align="center" valign="top" width="600"> 
 
       <![endif]--> 
 
       <table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;"> 
 
        <!-- COPY --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;">We're excited you have created an event. Here are some of the details below.</p> 
 
         </td> 
 
        </tr> 
 
        <!-- Host Space --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;"> 
 
           <a href="https://www.YogaBandy.com/Space/Public/@Model.SpaceId" target="_blank" class="thumbnail" style="margin-bottom: 0px;"> 
 
            <img alt="SpaceImage" title="Space Image" style="display: block" width="225" height="126" src="data:image/jpg;base64,@Raw(Model.SpaceThumbnail)" /> 
 
            <div class="caption"> 
 
             @Model.SpaceName 
 
            </div> 
 
           </a> 
 
          </p> 
 
         </td> 
 
        </tr> 
 
        <!-- Host Image --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;"> 
 
           <a href="https://www.YogaBandy.com/Profile/Public/@Model.HostId" target="_blank" class="thumbnail" style="margin-bottom: 0px;"> 
 
            <img alt="HostImage" title="Host Image" style="display: block" width="225" height="225" src="data:image/jpg;base64,@Raw(Model.HostThumbnail)" /> 
 
            <div class="caption"> 
 
             @Model.HostName 
 
            </div> 
 
           </a> 
 
          </p> 
 
         </td> 
 
        </tr> 
 
        <!-- DATE --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;">@Model.Date.ToLongDateString()</p> 
 
         </td> 
 
        </tr> 
 
        <!-- TIME --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;"> 
 
           <div>Time: @Model.Date.ToShortTimeString()</div> 
 
          </p> 
 
         </td> 
 
        </tr> 
 
        <!-- Location --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;">@Model.Location</p> 
 
         </td> 
 
        </tr> 
 
        <!-- DURATION --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;">@Model.Duration</p> 
 
         </td> 
 
        </tr> 
 
        <!-- STYLE --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;">@Model.Style</p> 
 
         </td> 
 
        </tr> 
 
        <!-- BULLETPROOF BUTTON --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left"> 
 
          <table width="100%" border="0" cellspacing="0" cellpadding="0"> 
 
           <tr> 
 
            <td bgcolor="#ffffff" align="center" style="padding: 20px 30px 60px 30px;"> 
 
             <table border="0" cellspacing="0" cellpadding="0"> 
 
              <tr> 
 
               <td align="center" style="border-radius: 3px;" bgcolor="#16749F"><a href="" target="_blank" style="font-size: 20px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; text-decoration: none; color: #ffffff; text-decoration: none; padding: 15px 25px; border-radius: 2px; border: 1px solid #16749F; display: inline-block;">Add To Calendar</a></td> 
 
              </tr> 
 
             </table> 
 
            </td> 
 
           </tr> 
 
          </table> 
 
         </td> 
 
        </tr> 
 
        
 
        
 
        <!-- COPY --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 0px 30px 20px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;">If you have any questions, just send an email to the support address—we're always happy to help out.</p> 
 
         </td> 
 
        </tr> 
 
        <!-- COPY --> 
 
        <tr> 
 
         <td bgcolor="#ffffff" align="left" style="padding: 0px 30px 40px 30px; border-radius: 0px 0px 4px 4px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <p style="margin: 0;">Cheers,<br>The YogaBandy Team</p> 
 
         </td> 
 
        </tr> 
 
       </table> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       </td> 
 
       </tr> 
 
       </table> 
 
       <![endif]--> 
 
      </td> 
 
     </tr> 
 
     <!-- SUPPORT CALLOUT --> 
 
     <tr> 
 
      <td bgcolor="#f4f4f4" align="center" style="padding: 30px 10px 0px 10px;"> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       <table align="center" border="0" cellspacing="0" cellpadding="0" width="600"> 
 
       <tr> 
 
       <td align="center" valign="top" width="600"> 
 
       <![endif]--> 
 
       <table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;"> 
 
        <!-- HEADLINE --> 
 
        <tr> 
 
         <td bgcolor="#157b9d" align="center" style="padding: 30px 30px 30px 30px; border-radius: 4px 4px 4px 4px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"> 
 
          <h2 style="font-size: 20px; font-weight: 400; color: #111111; margin: 0;">Need more help?</h2> 
 
          <p style="margin: 0;"><a href="https://YogaBandy/Contact.com" target="_blank" style="color: #FFFFFF;">We&rsquo;re here, ready to help</a></p> 
 
         </td> 
 
        </tr> 
 
       </table> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       </td> 
 
       </tr> 
 
       </table> 
 
       <![endif]--> 
 
      </td> 
 
     </tr> 
 
     <!-- FOOTER --> 
 
     <tr> 
 
      <td bgcolor="#f4f4f4" align="center" style="padding: 0px 10px 0px 10px;"> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       <table align="center" border="0" cellspacing="0" cellpadding="0" width="600"> 
 
       <tr> 
 
       <td align="center" valign="top" width="600"> 
 
       <![endif]--> 
 
       <table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;"> 
 
        <!-- NAVIGATION --> 
 
        <!-- PERMISSION REMINDER --> 
 
        <tr> 
 
         <td bgcolor="#f4f4f4" align="left" style="padding: 0px 30px 30px 30px; color: #666666; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 400; line-height: 18px;"> 
 
          <p style="margin: 0;">You received this email because you just created a YogaBandy event. If it looks weird, <a href="https://YogaBandy.com" target="_blank" style="color: #111111; font-weight: 700;">view it in your browser</a>.</p> 
 
         </td> 
 
        </tr> 
 
        <!-- UNSUBSCRIBE --> 
 
        <!-- ADDRESS --> 
 

 
       </table> 
 
       <!--[if (gte mso 9)|(IE)]> 
 
       </td> 
 
       </tr> 
 
       </table> 
 
       <![endif]--> 
 
      </td> 
 
     </tr> 
 
    </table> 
 

 
</body> 
 
</html>

उत्तर

4

tl; डॉ

जीमेल और कुछ अन्य ग्राहकों base64 इनकोडिंग छवियों पसंद नहीं है।

पूर्ण स्टोरी

बहुत मैंने सोचा दृश्य "मूल दिखाएं" जीमेल में था।

enter image description here

कि मुझसे कहता है कि अभी जीमेल बस इस सामग्री को फ़िल्टर करने को चुनने है: मेरे आश्चर्य करने के लिए, कच्चे सामग्री अब भी आपके एम्बेडेड छवि डेटा है। मैं कारण खोजने में सक्षम नहीं था। कुछ अनुमान length of encoded data itself इंगित करते हैं। अन्य सामान्य तरीके से बात करते हैं जिसमें Gmail filters out images। इस तकनीक के रिकॉर्ड भी हैं functioning a number of years back

इसके अतिरिक्त, न्यूटन (पूर्व में क्लाउड मैजिक) जैसे किसी तीसरे पक्ष के क्लाइंट में एक ही सटीक ईमेल को देखते समय, मुझे छवियां ठीक से प्रस्तुत की जाती हैं।

enter image description here

कि सब के सब एक सरल, लेकिन दुख की बात यह है कि जीमेल इनलाइन एन्कोडेड छवियों पसंद नहीं करता है के लिए अंक। ब्राउज़र में नहीं, बल्कि अपने मोबाइल ऐप्स में नहीं।

वास्तव में, अंत में मुझे लगता है कि एक ही परिणाम के साथ समाप्त 2013 by Campaign Monitor blog से एक पोस्ट की खोज की थी।

इनलाइन एम्बेडेड छवियों का उपयोग न करें।

12

गूगल Gmail के वेब इंटरफ़ेस में डेटा यूआरएल के साथ छवियों को दिखाने के लिए मना कर दिया। यह एक ज्ञात समस्या है (Google के दृष्टिकोण में सुरक्षा उपाय) लंबे समय तक अत्यधिक आलोचना के लिए।

अच्छी खबर यह है कि बाहरी छवियों का उपयोग करने के अलावा आपके पास दूसरा विकल्प है।

जीमेल के साथ सामग्री-आईडी कार्यों के साथ एक इनलाइन अटैचमेंट का उपयोग करना।

अपनी छवियों को इनलाइन अनुलग्नकों के रूप में जोड़ने के बाद आपको HTML शरीर में Data URLs के बजाय CID URLs इंगित करने की आवश्यकता होगी।

बहुत सारे आधुनिक पुस्तकालय हैं जो आपको आसानी से इनलाइन अनुलग्नकों के साथ ईमेल भेजने की अनुमति देंगे। लेकिन मैंने सीडीओ लाइब्रेरी के साथ वीबीस्क्रिप्ट में नमूना स्क्रिप्ट लिखी, यदि आपके पास विंडोज 2000+ बॉक्स स्थापित है तो इसका उपयोग करने के लिए तैयार है।

चलो परीक्षण पर्यावरण तैयार करते हैं।

फ़ाइलों को नीचे दिए गए स्क्रीनशॉट में निर्देशिका में रखें।

enter image description here

tpl.html टेम्पलेट फ़ाइल आपके द्वारा दिया गया है। आपको इस फ़ाइल में कुछ बदलाव करने की आवश्यकता होगी।

क्रमशः निम्नलिखित के साथ img तत्वों को बदलें। ध्यान दें कि डेटा यूआरएल चला गया। image1 और image2 स्क्रिप्ट में प्रत्येक इनलाइन अनुलग्नकों के लिए निर्दिष्ट सामग्री आईडी हैं। फ़ाइल नामों से यहां कुछ भी जुड़ा हुआ नहीं है।

<img src="cid:image1" alt="SpaceImage" title="Space Image" style="display: block" width="225" height="126" /> 
<img src="cid:image2" alt="HostImage" title="Host Image" style="display: block" width="225" height="225" /> 

Embedded.vbs:

MsgBox "Wait while your email is being sent.", vbOKOnly Or vbInformation 

'************ CONFIGURATION ************* 
Const smtpUsername = "..." 
Const smtpPassword = "..." 
Const smtpHost = "smtp.sendgrid.net" 
Const smtpPort = 587 
Const senderEmail = "[email protected]" 
Const recipientEmail = "[email protected]" 
'************ CONFIGURATION ************* 

Const cdoRefTypeId = 0 

Set Fso = CreateObject("Scripting.FileSystemObject") 

Set objMail = CreateObject("CDO.Message") 
With objMail.Configuration 
    .Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 
    .Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = smtpUsername 
    .Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = smtpPassword 
    .Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = smtpHost 
    .Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = smtpPort 
    .Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 
    .Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 20 'secs 
    .Fields.Update 
End With 

With objMail 
    .AutoGenerateTextBody = False 
    .From = senderEmail 
    .To = recipientEmail 
    .Subject = "Inline Image Test" 
    .BodyPart.ContentTransferEncoding = "quoted-printable" 
    .BodyPart.Charset = "utf-8" 

    'Adding images as inline attachments with Content IDs which is used with image sources. e.g. <img src="cid:image1" 
    .AddRelatedBodyPart Fso.GetAbsolutePathName("image1.jpg"), "image1", cdoRefTypeId 
    .AddRelatedBodyPart Fso.GetAbsolutePathName("image2.jpg"), "image2", cdoRefTypeId 

    'append html body from file 
    .HTMLBody = Fso.OpenTextFile("tpl.html").ReadAll 
    .Send 
End With 

MsgBox "Email successfully sent! Check your inbox.", vbOKOnly Or vbInformation 

डबल क्लिक करें और निर्देश के लिए इंतजार।

यह भी देखें https://stackoverflow.com/search?q=is%3Aquestion+%5Bemail%5D+inline+image

संबंधित मुद्दे