如何删除以短信形式发送的“[附件已删除]”字符串?

Rsp*_*tzy 3 python mime smtplib python-3.x

我发现一个小程序可以通过 gmail 向我的手机发送短信,但是当我发送短信时,它会添加“[附件已删除]”,有什么方法可以删除它吗?

import smtplib 
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart

email = "Your Email"
pas = "Your Pass"

sms_gateway = 'number@tmomail.net'
# The server we use to send emails in our case it will be gmail but every email provider has a different smtp 
# and port is also provided by the email provider.
smtp = "smtp.gmail.com" 
port = 587
# This will start our email server
server = smtplib.SMTP(smtp,port)
# Starting the server
server.starttls()
# Now we need to login
server.login(email,pas)

# Now we use the MIME module to structure our message.
msg = MIMEMultipart()
msg['From'] = email
msg['To'] = sms_gateway
# Make sure you add a new line in the subject
msg['Subject'] = "You can insert anything\n"
# Make sure you also add new lines to your body
body = "You can insert message here\n"
# and then attach that body furthermore you can also send html content.
msg.attach(MIMEText(body, 'plain'))

sms = msg.as_string()

server.sendmail(email,sms_gateway,sms)

# lastly quit the server
server.quit()
Run Code Online (Sandbox Code Playgroud)

小智 5

当您执行 server.sendmail 步骤时,只需发送正文字符串。因此,它会是:

import smtplib 

email = "Your Email"
pas = "Your Pass"

sms_gateway = 'number@tmomail.net'
smtp = "smtp.gmail.com" 
port = 587
# This will start our email server
server = smtplib.SMTP(smtp,port)
# Starting the server
server.starttls()
# Now we need to login
server.login(email,pas)

body = "Yo, im done."

server.sendmail(email,sms_gateway,body)

# lastly quit the server
server.quit()
Run Code Online (Sandbox Code Playgroud)