質問編集履歴

10

実行結果を添付

2020/07/02 23:30

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -225,3 +225,19 @@
225
225
  ```
226
226
 
227
227
  ![print文の結果とemlをエディタで確認](b3fa467dd9a7117c0c258dc0c87c04fe.png)
228
+
229
+
230
+
231
+ ### 20200703 0829 結果添付
232
+
233
+ ```ここに言語を入力
234
+
235
+ MIME-Version: 1.0
236
+
237
+ Content-Transfer-Encoding: base64
238
+
239
+ Content-Type: text/comma-separated-values; charset="shift-jis"; name="=?iso-2022-jp?b?MjAyMDA3MDMwODI3NTcuY3N2?="
240
+
241
+ Content-Disposition: attachment; filename="=?iso-2022-jp?b?MjAyMDA3MDMwODI3NTcuY3N2?="
242
+
243
+ ```

9

画像とPGの追記

2020/07/02 23:30

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -195,3 +195,33 @@
195
195
  prtin(attachment)
196
196
 
197
197
  ```
198
+
199
+
200
+
201
+ ### 20200702 20:41 最新PGとその実行結果
202
+
203
+ ```Python
204
+
205
+ filename = os.path.basename(filepath)
206
+
207
+ with open(filepath, 'rt', encoding='Shift-JIS') as f:
208
+
209
+ content = f.read()
210
+
211
+ attachment = MIMEText(content, 'plain', 'Shift-JIS')
212
+
213
+ contentDisp = Header('attachment;', header_name='Content-Disposition')
214
+
215
+ contentDisp.append('filename="')
216
+
217
+ contentDisp.append(filename, charset='iso-2022-jp')
218
+
219
+ contentDisp.append('"')
220
+
221
+ attachment['Content-Disposition'] = contentDisp
222
+
223
+ print(attachment)
224
+
225
+ ```
226
+
227
+ ![print文の結果とemlをエディタで確認](b3fa467dd9a7117c0c258dc0c87c04fe.png)

8

コード追加

2020/07/02 11:43

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -155,3 +155,43 @@
155
155
 
156
156
 
157
157
  ```
158
+
159
+
160
+
161
+ ### 20200702 16:56 del文 追加
162
+
163
+ ```Python
164
+
165
+ filename = os.path.basename(filepath)
166
+
167
+ with open(filepath, 'rt', encoding='Shift-JIS') as f:
168
+
169
+ content = f.read()
170
+
171
+ attachment = MIMEText(content, 'plain', 'Shift-JIS', policy=policy.SMTP)
172
+
173
+ contentType = Header('text/comma-separated-values;', header_name='Content-Type')
174
+
175
+ contentType.append('name="')
176
+
177
+ contentType.append(filename, charset='iso-2022-jp')
178
+
179
+ contentType.append('"')
180
+
181
+ del attachment['Content-Type']
182
+
183
+ attachment['Content-Type'] = contentType
184
+
185
+ contentDisp = Header('attachment;', header_name='Content-Disposition')
186
+
187
+ contentDisp.append('filename="')
188
+
189
+ contentDisp.append(filename, charset='iso-2022-jp')
190
+
191
+ contentDisp.append('"')
192
+
193
+ attachment['Content-Disposition'] = contentDisp
194
+
195
+ prtin(attachment)
196
+
197
+ ```

7

とってもダメ

2020/07/02 08:00

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -132,7 +132,7 @@
132
132
 
133
133
  attachment = MIMEText(content, 'plain', 'Shift-JIS', policy=policy.SMTP)
134
134
 
135
- contentType = Header('text/comma-separated-values;', header_name='Content-Type', linesep='\r\n')
135
+ contentType = Header('text/comma-separated-values;', header_name='Content-Type')
136
136
 
137
137
  contentType.append('name="')
138
138
 
@@ -142,7 +142,7 @@
142
142
 
143
143
  attachment['Content-Type'] = contentType
144
144
 
145
- contentDisp = Header('attachment;', header_name='Content-Disposition', linesep='\r\n')
145
+ contentDisp = Header('attachment;', header_name='Content-Disposition')
146
146
 
147
147
  contentDisp.append('filename="')
148
148
 

6

現況コード貼り付け

2020/07/02 07:23

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -117,3 +117,41 @@
117
117
  ### 20200702 03:37AM コメントに記載した画像追加
118
118
 
119
119
  ![確認](8c18b615e042b9a39f2cd04d601ae025.png)
120
+
121
+
122
+
123
+ ### 20200702 16:12PM 現況の添付ファイルに関わるコード
124
+
125
+ ```Python
126
+
127
+ filename = os.path.basename(filepath)
128
+
129
+ with open(filepath, 'rt', encoding='Shift-JIS') as f:
130
+
131
+ content = f.read()
132
+
133
+ attachment = MIMEText(content, 'plain', 'Shift-JIS', policy=policy.SMTP)
134
+
135
+ contentType = Header('text/comma-separated-values;', header_name='Content-Type', linesep='\r\n')
136
+
137
+ contentType.append('name="')
138
+
139
+ contentType.append(filename, charset='iso-2022-jp')
140
+
141
+ contentType.append('"')
142
+
143
+ attachment['Content-Type'] = contentType
144
+
145
+ contentDisp = Header('attachment;', header_name='Content-Disposition', linesep='\r\n')
146
+
147
+ contentDisp.append('filename="')
148
+
149
+ contentDisp.append(filename, charset='iso-2022-jp')
150
+
151
+ contentDisp.append('"')
152
+
153
+ attachment['Content-Disposition'] = contentDisp
154
+
155
+
156
+
157
+ ```

5

画像追加

2020/07/02 07:15

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -111,3 +111,9 @@
111
111
  ### 20200628 画像差替え
112
112
 
113
113
  ![決定的な違い発見](dc3c85620c7c3f1783935ceba587212a.png)
114
+
115
+
116
+
117
+ ### 20200702 03:37AM コメントに記載した画像追加
118
+
119
+ ![確認](8c18b615e042b9a39f2cd04d601ae025.png)

4

意味のない添付画像を 価値ある添付に差し替え

2020/07/01 18:38

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -108,134 +108,6 @@
108
108
 
109
109
 
110
110
 
111
- ### 20200627 画像差替え
111
+ ### 20200628 画像差替え
112
112
 
113
- ![上と下](30cc975657f99dfa54034f5be2a355fa.png)
114
-
115
-
116
-
117
- ```mail
118
-
119
- X-Apparently-To: temp@yahoo.co.jp; Sat, 27 Jun 2020 19:44:10 +0900
120
-
121
- Return-Path: <konyagayamada@hogehoge.com>
122
-
123
- X-YMailISG: nCucsTwWLDuohHhTizGTsY0SQpuPHH4mJWP8gIKDUAYYHiJV
124
-
125
- 7LVcjhWAaUci934BdO1ctmv_jmO_w6HtcakcLNCj6G3zIabDMFhtsqqe7j0P
126
-
127
- y7RMAhvnDpBZMi6Uqp5YOkoYYtWuVtjvx3TDFO72E1nALABpqjVLkG6MBhWc
128
-
129
- sIOd4dVuyVIx.94kwHrA0iwC99nGDDZ8S0GhquBRU9R8C2p6nhxL1_z8RpYE
130
-
131
- EcCw07toQWy_sR7BeMAp5FU0c1rqO1nSowlF7hm0MCQ4_O8Btw4pdRpODQfj
132
-
133
- j8OifNzQ6ZuiGPiYk.MvQ2d3K.xdZpmHkEtGI92mIsQoK4pE4KLS1CIzPF4D
134
-
135
- UwKX1WkH5zP0hp1KmDibhvqNKQQtqCVfCXKZ8ov6CpOVpxe92CEP0IVN2eT5
136
-
137
- 4g8MHuRFcMsUuEpQkzB5EhxyeFSn2YRufzjuejteKrW89JsrYTco63FLUGZZ
138
-
139
- a3LTIpko9DDkuygsw275TE1fugWS.AtL0534.uOwryT_nIQotY2CYS_4iait
140
-
141
- z0m5f7ziFaNBd01PD3yj8Cf_OwWVFm30fFDGsAnZ8YMBalkZP5NUUMc4tZNC
142
-
143
- Zdm_z0JN0n992cbL.GSDuiFD3JYvpaBOyxNVdEXehzTGRAA_QiI7a5_1CIE5
144
-
145
- JM19vC93xTEcYdxCeJXr.P5aAVVwfMZQ933il1G3_VdKYTHHJcinZ.iZmwxf
146
-
147
- vczpneb1VFN2AukmCBHIXqtFRtM518J.GeboMOUUoY6QP2ZQ2ZlU3If0wa39
148
-
149
- 4xanM2p0GrG9m7LUE.n65tfdBxCVKCA0jjnOd351TkpAwjEqoyZFOQZZkAyD
150
-
151
- gFoXC.9.dRZQT42cpiV9VTUxJmfPt0s6.0SA8He72Gk3BzUmcnT7L8Qmu7NJ
152
-
153
- fkMg5iAxB_xQBrFNj.E8rajCLA0D.v8wxfrfXh4bfk4_.xiVo8PEd1pNRgqZ
154
-
155
- 9T9E0pG7sz.qzg1jG7gJPWjWHp2Q8enPQmquNQAADNIvfGq9cOhTM7FCOc6b
156
-
157
- C.u0nskOcICrh2hmh8waYvw94TuBPtNzgRbpjN0bXMeDvE6Wc0qyQeo_kTpf
158
-
159
- _C06lwnSgV8bHAjDRWUKauFJFTEEf7EIuaH6UJDKS3gqxbrIGdRhXdfmRqEt
160
-
161
- V5zS.EEphcOdVYWILbaLttudjP8aMe_TjqTpvxNgGR9CPo_L81OHpYUnHmM-
162
-
163
- X-Originating-IP: [210.777.888.999]
164
-
165
- Received-SPF: pass (mo-csw.securemx.jp: domain of konyagayamada@hogehoge.com designates 210.777.888.999 as permitted sender) receiver=mo-csw.securemx.jp; client-ip=210.777.888.999; envelope-from=konyagayamada@hogehoge.com;
166
-
167
- Authentication-Results: mta115.mail.bbt.yahoo.co.jp from=hogehoge.com; domainkeys=neutral (no sig); dkim=pass (ok); header.i=@hogehoge.com; dmarc=pass (p=NONE,sp=NONE,pct=100,domain=hogehoge.com); header.from=hogehoge.com
168
-
169
- Received: from 210.777.888.999 (EHLO mo-csw.securemx.jp) (210.777.888.999)
170
-
171
- by mta115.mail.bbt.yahoo.co.jp with SMTP; Sat, 27 Jun 2020 19:44:09 +0900
172
-
173
- DKIM-Signature: v=1;a=rsa-sha256;c=relaxed/simple;d=hogehoge.com;h=Content-Type
174
-
175
- :MIME-Version:Subject:From:To:Cc:Date:Message-Id;i=konyagayamada@hogehoge.com;s=
176
-
177
- 20200225.smx;t=1593254649;x=1594464249;bh=VQU5gF9Sv5zvnpOmuDh8vAvlx5Wjv/mkidU
178
-
179
- qleo0G+w=;b=XCS5deDO3xHyWmRX4V6FJpNp0pNozThwtnBOjeeEfSIXUo00NhzTBrcrVoJpmAvmY
180
-
181
- Y9yq0KjPUFY1DwwQxPxbDlHEGIfpeEMM3QVqQdch/RXtpOA/JXQIhs6NzO/ICACwscfcYKwk5HWif
182
-
183
- XfjGciSFPOLEJhjxQbUKISGpmvqDU01aFlImgXMHNYelW8YCqbEMroigqoY6r9B+Kx5JS+RUMDAYA
184
-
185
- bOc2Tal6LveAHlbBdNQJOx7fliXLLOqED2vxMWabYkLyyV/55X+/cIUfySEsIPD1hkMMUaQ5KdrgL
186
-
187
- AOGoxkVJmO8heEdRGsWVUScXZdiF7sSF8y1m74sHTpvaqw==;
188
-
189
- Received: by mo-csw.securemx.jp (mx-mo-csw1515) id 05RAi9Ic005340; Sat, 27 Jun 2020 19:44:09 +0900
190
-
191
- X-Iguazu-Qid: 34trWq5ayVXFO7nHVI
192
-
193
- X-Iguazu-QSIG: v=2; s=0; t=1593254648; q=34trWq5ayVXFO7nHVI; m=kULd9HZdv7HXVst9Ix3zO+Q6OpwOuHW+KOCjMFGsMPE=
194
-
195
- Received: from n9mail8smtpex001.hogehoge.com (n9mail8smtpex001.hogehoge.com [210.000.000.00])
196
-
197
- by relay.securemx.jp (mx-mr1511) id 05RAi7wi024434;
198
-
199
- Sat, 27 Jun 2020 19:44:07 +0900
200
-
201
- Received: from n9mail8smtpex001.hogehoge.com (unknown [127.0.0.1])
202
-
203
- by HOSTID.nikoniko.hoge.co.jp (Postfix) with ESMTP id 581FF5F79E
204
-
205
- for <temp@yahoo.co.jp>; Sat, 27 Jun 2020 19:44:07 +0900 (JST)
206
-
207
- Received: from localhost.localdomain (unknown [10.82.33.237])
208
-
209
- by HOSTID.nikoniko.hoge.co.jp (Postfix) with ESMTP id 14F365F74D
210
-
211
- for <temp@yahoo.co.jp>; Sat, 27 Jun 2020 19:44:07 +0900 (JST)
212
-
213
- X-Original-To: temp@yahoo.co.jp
214
-
215
- Received: from U9999990000.CERTAIN.local (unknown [10.71.99.999])
216
-
217
- (Authenticated sender: SOMEID@hogehoge.com)
218
-
219
- by SOMEHOSTID.hogehoge.com (Postfix) with ESMTPA id 4D8C280002
220
-
221
- for <temp@yahoo.co.jp>; Sat, 27 Jun 2020 19:43:59 +0900 (JST)
222
-
223
- Content-Type: multipart/mixed; boundary="===============0516921709085106030=="
224
-
225
- MIME-Version: 1.0
226
-
227
- Subject: =?utf-8?b?44GT44KM44Gv77yW5pyI44Gu44CHw5filqHjgrvjg7Pjgr/jg7zjga7lrp/nuL7jgafjgZnjgII=?=
228
-
229
- From: konyagayamada@hogehoge.com
230
-
231
- To: temp@yahoo.co.jp, konyagayamada@hogehoge.com
232
-
233
- Cc:
234
-
235
- Date: Sat, 27 Jun 2020 10:43:58 -0000
236
-
237
- Message-Id: <20200627104359.4D8C280002@SOMEHOSTID.hogehoge.com>
238
-
239
- Content-Length: 1326613
240
-
241
- ```
113
+ ![決定的な違い発見](dc3c85620c7c3f1783935ceba587212a.png)

3

Webメールのヘッダ

2020/06/28 00:43

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -111,3 +111,131 @@
111
111
  ### 20200627 画像差替え
112
112
 
113
113
  ![上と下](30cc975657f99dfa54034f5be2a355fa.png)
114
+
115
+
116
+
117
+ ```mail
118
+
119
+ X-Apparently-To: temp@yahoo.co.jp; Sat, 27 Jun 2020 19:44:10 +0900
120
+
121
+ Return-Path: <konyagayamada@hogehoge.com>
122
+
123
+ X-YMailISG: nCucsTwWLDuohHhTizGTsY0SQpuPHH4mJWP8gIKDUAYYHiJV
124
+
125
+ 7LVcjhWAaUci934BdO1ctmv_jmO_w6HtcakcLNCj6G3zIabDMFhtsqqe7j0P
126
+
127
+ y7RMAhvnDpBZMi6Uqp5YOkoYYtWuVtjvx3TDFO72E1nALABpqjVLkG6MBhWc
128
+
129
+ sIOd4dVuyVIx.94kwHrA0iwC99nGDDZ8S0GhquBRU9R8C2p6nhxL1_z8RpYE
130
+
131
+ EcCw07toQWy_sR7BeMAp5FU0c1rqO1nSowlF7hm0MCQ4_O8Btw4pdRpODQfj
132
+
133
+ j8OifNzQ6ZuiGPiYk.MvQ2d3K.xdZpmHkEtGI92mIsQoK4pE4KLS1CIzPF4D
134
+
135
+ UwKX1WkH5zP0hp1KmDibhvqNKQQtqCVfCXKZ8ov6CpOVpxe92CEP0IVN2eT5
136
+
137
+ 4g8MHuRFcMsUuEpQkzB5EhxyeFSn2YRufzjuejteKrW89JsrYTco63FLUGZZ
138
+
139
+ a3LTIpko9DDkuygsw275TE1fugWS.AtL0534.uOwryT_nIQotY2CYS_4iait
140
+
141
+ z0m5f7ziFaNBd01PD3yj8Cf_OwWVFm30fFDGsAnZ8YMBalkZP5NUUMc4tZNC
142
+
143
+ Zdm_z0JN0n992cbL.GSDuiFD3JYvpaBOyxNVdEXehzTGRAA_QiI7a5_1CIE5
144
+
145
+ JM19vC93xTEcYdxCeJXr.P5aAVVwfMZQ933il1G3_VdKYTHHJcinZ.iZmwxf
146
+
147
+ vczpneb1VFN2AukmCBHIXqtFRtM518J.GeboMOUUoY6QP2ZQ2ZlU3If0wa39
148
+
149
+ 4xanM2p0GrG9m7LUE.n65tfdBxCVKCA0jjnOd351TkpAwjEqoyZFOQZZkAyD
150
+
151
+ gFoXC.9.dRZQT42cpiV9VTUxJmfPt0s6.0SA8He72Gk3BzUmcnT7L8Qmu7NJ
152
+
153
+ fkMg5iAxB_xQBrFNj.E8rajCLA0D.v8wxfrfXh4bfk4_.xiVo8PEd1pNRgqZ
154
+
155
+ 9T9E0pG7sz.qzg1jG7gJPWjWHp2Q8enPQmquNQAADNIvfGq9cOhTM7FCOc6b
156
+
157
+ C.u0nskOcICrh2hmh8waYvw94TuBPtNzgRbpjN0bXMeDvE6Wc0qyQeo_kTpf
158
+
159
+ _C06lwnSgV8bHAjDRWUKauFJFTEEf7EIuaH6UJDKS3gqxbrIGdRhXdfmRqEt
160
+
161
+ V5zS.EEphcOdVYWILbaLttudjP8aMe_TjqTpvxNgGR9CPo_L81OHpYUnHmM-
162
+
163
+ X-Originating-IP: [210.777.888.999]
164
+
165
+ Received-SPF: pass (mo-csw.securemx.jp: domain of konyagayamada@hogehoge.com designates 210.777.888.999 as permitted sender) receiver=mo-csw.securemx.jp; client-ip=210.777.888.999; envelope-from=konyagayamada@hogehoge.com;
166
+
167
+ Authentication-Results: mta115.mail.bbt.yahoo.co.jp from=hogehoge.com; domainkeys=neutral (no sig); dkim=pass (ok); header.i=@hogehoge.com; dmarc=pass (p=NONE,sp=NONE,pct=100,domain=hogehoge.com); header.from=hogehoge.com
168
+
169
+ Received: from 210.777.888.999 (EHLO mo-csw.securemx.jp) (210.777.888.999)
170
+
171
+ by mta115.mail.bbt.yahoo.co.jp with SMTP; Sat, 27 Jun 2020 19:44:09 +0900
172
+
173
+ DKIM-Signature: v=1;a=rsa-sha256;c=relaxed/simple;d=hogehoge.com;h=Content-Type
174
+
175
+ :MIME-Version:Subject:From:To:Cc:Date:Message-Id;i=konyagayamada@hogehoge.com;s=
176
+
177
+ 20200225.smx;t=1593254649;x=1594464249;bh=VQU5gF9Sv5zvnpOmuDh8vAvlx5Wjv/mkidU
178
+
179
+ qleo0G+w=;b=XCS5deDO3xHyWmRX4V6FJpNp0pNozThwtnBOjeeEfSIXUo00NhzTBrcrVoJpmAvmY
180
+
181
+ Y9yq0KjPUFY1DwwQxPxbDlHEGIfpeEMM3QVqQdch/RXtpOA/JXQIhs6NzO/ICACwscfcYKwk5HWif
182
+
183
+ XfjGciSFPOLEJhjxQbUKISGpmvqDU01aFlImgXMHNYelW8YCqbEMroigqoY6r9B+Kx5JS+RUMDAYA
184
+
185
+ bOc2Tal6LveAHlbBdNQJOx7fliXLLOqED2vxMWabYkLyyV/55X+/cIUfySEsIPD1hkMMUaQ5KdrgL
186
+
187
+ AOGoxkVJmO8heEdRGsWVUScXZdiF7sSF8y1m74sHTpvaqw==;
188
+
189
+ Received: by mo-csw.securemx.jp (mx-mo-csw1515) id 05RAi9Ic005340; Sat, 27 Jun 2020 19:44:09 +0900
190
+
191
+ X-Iguazu-Qid: 34trWq5ayVXFO7nHVI
192
+
193
+ X-Iguazu-QSIG: v=2; s=0; t=1593254648; q=34trWq5ayVXFO7nHVI; m=kULd9HZdv7HXVst9Ix3zO+Q6OpwOuHW+KOCjMFGsMPE=
194
+
195
+ Received: from n9mail8smtpex001.hogehoge.com (n9mail8smtpex001.hogehoge.com [210.000.000.00])
196
+
197
+ by relay.securemx.jp (mx-mr1511) id 05RAi7wi024434;
198
+
199
+ Sat, 27 Jun 2020 19:44:07 +0900
200
+
201
+ Received: from n9mail8smtpex001.hogehoge.com (unknown [127.0.0.1])
202
+
203
+ by HOSTID.nikoniko.hoge.co.jp (Postfix) with ESMTP id 581FF5F79E
204
+
205
+ for <temp@yahoo.co.jp>; Sat, 27 Jun 2020 19:44:07 +0900 (JST)
206
+
207
+ Received: from localhost.localdomain (unknown [10.82.33.237])
208
+
209
+ by HOSTID.nikoniko.hoge.co.jp (Postfix) with ESMTP id 14F365F74D
210
+
211
+ for <temp@yahoo.co.jp>; Sat, 27 Jun 2020 19:44:07 +0900 (JST)
212
+
213
+ X-Original-To: temp@yahoo.co.jp
214
+
215
+ Received: from U9999990000.CERTAIN.local (unknown [10.71.99.999])
216
+
217
+ (Authenticated sender: SOMEID@hogehoge.com)
218
+
219
+ by SOMEHOSTID.hogehoge.com (Postfix) with ESMTPA id 4D8C280002
220
+
221
+ for <temp@yahoo.co.jp>; Sat, 27 Jun 2020 19:43:59 +0900 (JST)
222
+
223
+ Content-Type: multipart/mixed; boundary="===============0516921709085106030=="
224
+
225
+ MIME-Version: 1.0
226
+
227
+ Subject: =?utf-8?b?44GT44KM44Gv77yW5pyI44Gu44CHw5filqHjgrvjg7Pjgr/jg7zjga7lrp/nuL7jgafjgZnjgII=?=
228
+
229
+ From: konyagayamada@hogehoge.com
230
+
231
+ To: temp@yahoo.co.jp, konyagayamada@hogehoge.com
232
+
233
+ Cc:
234
+
235
+ Date: Sat, 27 Jun 2020 10:43:58 -0000
236
+
237
+ Message-Id: <20200627104359.4D8C280002@SOMEHOSTID.hogehoge.com>
238
+
239
+ Content-Length: 1326613
240
+
241
+ ```

2

画像さしかえ

2020/06/27 11:09

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -108,6 +108,6 @@
108
108
 
109
109
 
110
110
 
111
- ### 20200621 画像追加
111
+ ### 20200627 画像差替え
112
112
 
113
- ![イメージ説明](8f792b3ea1a4cbd97183a503fc8fb982.png)
113
+ ![上と下](30cc975657f99dfa54034f5be2a355fa.png)

1

画像

2020/06/27 07:01

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -105,3 +105,9 @@
105
105
  return result
106
106
 
107
107
  ```
108
+
109
+
110
+
111
+ ### 20200621 画像追加
112
+
113
+ ![イメージ説明](8f792b3ea1a4cbd97183a503fc8fb982.png)