스택큐힙리스트

이메일 첨부 파일을 어떻게 보내나요? 본문

카테고리 없음

이메일 첨부 파일을 어떻게 보내나요?

스택큐힙리스트 2023. 4. 22. 13:20
반응형

나는 파이썬을 사용하여 첨부 파일을 이메일로 보내는 방법을 이해하는 데 문제가 있습니다. 나는 간단한 메시지를 성공적으로 #$#!$$$ & $ & 와 함께 이메일로 보냈습니다. 누군가 이메일에 첨부 파일을 보내는 방법을 설명해주시겠습니까? 다른 게시물이 온라인에 있지만 파이썬 초보자로서 이해하기 어렵다고 생각합니다.

답변 1

여기 하나 더 있습니다:

import smtplib

from os.path import basename

from email.mime.application import MIMEApplication

from email.mime.multipart import MIMEMultipart

from email.mime.text import MIMEText

from email.utils import COMMASPACE, formatdate

def send_mail(send_from, send_to, subject, text, files=None,

server=127.0.0.1):

assert isinstance(send_to, list)

msg = MIMEMultipart()

msg['From'] = send_from

msg['To'] = COMMASPACE.join(send_to)

msg['Date'] = formatdate(localtime=True)

msg['Subject'] = subject

msg.attach(MIMEText(text))

for f in files or []:

with open(f, rb) as fil:

part = MIMEApplication(

fil.read(),

Name=basename(f)

)

# After the file is closed

part['Content-Disposition'] = 'attachment; filename=%s' % basename(f)

msg.attach(part)

smtp = smtplib.SMTP(server)

smtp.sendmail(send_from, send_to, msg.as_string())

smtp.close()

첫 번째 예제와 거의 같지만... 삽입하기가 더 쉬울 것입니다.

답변 2

이메일 첨부 파일 보내기: 이메일 첨부 파일 보내는 방법에 대한 유용한 팁

이메일 첨부 파일 보내기는 매우 쉬운 작업입니다. 그러나 이 작업을 하기 전에 꼭 알아야 할 몇 가지 팁이 있습니다.

1. 첨부 파일의 크기를 확인하세요

이메일 첨부 파일의 크기는 매우 중요합니다. 보통, 이메일 첨부 파일의 크기는 25MB 이하이어야 합니다. 만약 이를 초과하면, 파일이 성공적으로 전송되지 않을 수 있습니다. 또한, 대부분의 이메일 제공 업체에서는 이메일 첨부 파일의 크기를 제한하기 때문에, 더 큰 파일을 보내려면 클라우드 서비스를 사용하여 파일을 업로드하고 공유할 수 있습니다.

2. 첨부 파일의 형식을 확인하세요

이메일 첨부 파일 형식은 중요합니다. 대개, 대부분의 이메일 제공 업체에서는 다양한 파일 형식을 지원합니다. 그러나, 다른 사용자가 이메일 첨부 파일을 열기 전에 사용하는 소프트웨어와 파일 형식이 동일해야 한다는 것을 기억하세요.

3. 첨부 파일 이름을 명확하게 설정하세요

이메일 첨부 파일의 이름은 명확해야 합니다. 이는 받는 사람이 무슨 파일인지 쉽게 파악할 수 있게 도와줍니다. 또한, 파일 이름에 대문자와 소문자가 혼용되지 않도록 주의하세요.

4. 첨부 파일을 압축하세요

일부 이메일 제공 업체에서는 수신한 첨부 파일 자체를 검사하여 바이러스를 감지할 수 있습니다. 이것은 첨부 파일이 큰 용량인 경우, 특히 유용합니다. 암호화된 파일의 경우 비밀 암호와 함께 첨부 파일을 보내는 것이 좋습니다.

이메일 첨부 파일 보내는 방법은 매우 간단합니다. 대부분의 이메일 프로그램에서는 ‘첨부 파일’ 버튼을 클릭하면 파일을 선택하고 보낼 수 있습니다. 그러나, 위에서 언급한 몇 가지 팁을 따르면, 첨부 파일이 성공적으로 전송되어 받는 사람이 수신할 수 있습니다.압축된 파일을 첨부하고 비밀번호도 같이 보내면 안전합니다.

In English:

Sending Email Attachments: Useful Tips on How to Send Email Attachments

Sending email attachments is a very easy task. However, there are a few tips that you should know before doing this task.

1. Check the Size of the Attachment

The size of email attachments is very important. Typically, email attachments should be less than 25MB. If it exceeds, the file may not be sent successfully. Additionally, most email providers limit the size of email attachments, so if you need to send larger files, you can upload them to a cloud service to share with others.

2. Confirm the File Type of the Attachment

The file type of email attachments is also important. In general, most email providers support a variety of file types. However, keep in mind that the software and file type that the intended receiver uses should be the same before opening the email attachment.

3. Set Clear Names for Attached Files

File names for email attachments should be clear. This helps the recipient quickly identify what the attached file is. Also, be careful not to mix upper and lower case letters in the file name.

4. Compress the Attached Files

Some email providers can scan received attached files themselves to detect viruses. This is particularly useful for large files. It is recommended to send an encrypted file with a secret password.

Sending email attachments is easy in most email programs. Click the Attach file button to select the file you want to send. However, following the tips mentioned above, you can successfully send attached files that others can receive safely. It is also safe to attach compressed files and send them with a password.

반응형
Comments