버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

csv, json 포맷으로 작성하고 등록하면 됩니다. (아래와 같은 형태)


2.2 이메일 템플릿을 제작합니다.

코드 블럭
languagexml
themeRDark
title이메일 템플릿
<!DOCTYPE html>
<html lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
    <font face="Arial">
        <table cellpadding="0" cellspacing="0" width="100%">
            <tbody>
                <tr>
                    <td width="100">
                        <img src="https://a0.awsstatic.com/libra-css/images/logos/aws_logo_smile_1200x630.png" alt="Amazon Web Services Logo" height="50">
                    </td>
                    
                    <td style="text-align:right;padding-right:10px">
                        <font size="2"><a href="https://aws.amazon.com/">aws.amazon.com</a>
                        </font>
                    </td>
                </tr>
            </tbody>
        </table>
        <hr>
        <br>
        <div style="height: 200px; overflow: hidden;text-align:center">
            <img src="https://d1.awsstatic.com/product-marketing/Pinpoint/Pinpoint%20Web%20Illustrations_EngagementManagement-Editorial.08da4e3b599fbbcd18ab5a85b991b4b8077fe509.png" alt="Aamazon Pinpoint Journey" style="height:200px; margin:0px 0 0 0;">
        </div>
        <br>
        <div style="padding:20px;">
            <h4>AWS와의 미팅은 즐거우셨나요?</h4>
            <div> 고객님의 소중한 의견을 모아 더 나은 서비스로 보답하고자 설문조사를 실시하고 있습니다. 잠시만 시간을 내주시면 감사하겠습니다. </div>
            <br>
            <h4>We Hope you had a pleasant trip with Amazon Web Services.</h4>
            <div> Please answer this short survey to share your experience with us. Your valuable feedback will be userd to futher enhance our services. </div>    
        </div>
        
        <br>
        <div style="text-align:center">
            <a href="https://y85teb42e2.execute-api.us-east-1.amazonaws.com/Prod/newsurvey?email={{Address}}">
                <button style="background-color:#50AEEB;border:none;color:white;padding:15px;text-align: center; text-decoration: none; display: inline-block;font-size: 16px;margin: 4px 2px;border-radius: 12px;">설문조사 바로가기 / Start Survey</button>
            </a>
            
        </div>
        <br>
        <font color="white">
            <table bgcolor="#757F88" cellpadding="0" cellspacing="0" width="100%" style="font-size:75%">
                <tbody>
                    <tr>
                        <th width="20"> </th>
                        <th> </th>
                        <th width="20"> </th>
                    </tr>
                    <tr>
                        <td> </td>
                        <td>
                            <ul style="padding-left:20px;">
                                <li> <b>E-MAIL 발송 정보</b> </li>
                                <div> 본 이메일은 금번 미팅에 참석해 주신 분들께만 발송되었습니다. 메일을 더 이상 받지 않으시려면 [<a href="https://aws.amazon.com/">수신거부</a>]를 눌러주시기 바랍니다. </div>
                            </ul>
                            <or>
                            </or>
                        </td>
                        <td> </td>
                    </tr>
                    <tr>
                        <td></td>
                        <td>
                            <div style="white-space:nowrap;text-align: right;">
                            <a href="https://www.facebook.com/amazonwebservices.ko/?brand_redir=153063591397681" target="_blank"><img src="https://www.koreanair.com/etc/clientlibs/koreanair/images/components/footer/icon-fb.png" alt="AWS 페이스북"></a>
                            <a href="https://twitter.com/awscloud" target="_blank"><img src="https://www.koreanair.com/etc/clientlibs/koreanair/images/components/footer/icon-tw.png" alt="AWS 트위터"></a>
                            </div>
                        </td>
                        <td></td>
                    </tr>
                    <tr>
                        <td colspan="3"> </td>
                    </tr>
                    <tr>
                        <td colspan="3"> </td>
                    </tr>
                </tbody>
            </table>
        </font>
    </font>
</body>
</html>

...