這裏是原始帖子的鏈接:Why am I not able to send a Colon in a message but am able to send a Semicolon??? (Python, SMTP module) a爲什麼不在手機上顯示此文本?
這與當時的冒號有關。我試着用不同的方式進行格式化,當時冒號使得手機上的文本顯示爲空白。這是我正在使用的短信功能的簡單版本。這是一個威瑞森iPhone的SMTP,如果這有所作爲。我可以使用分號,它會工作,但冒號不會:
import time
current = (str(time.strftime("%I:%M %p")))
print (current)
def Text():
import smtplib
ContentMatch = ("Content match, website checked at: ", current)
username = ("EmailUser")
password = ("Password1")
fromaddr = ("[email protected]")
toaddrs = ("[email protected]")
message = (str(ContentMatch))
# The actual mail send
server = smtplib.SMTP('smtp.gmail.com:587')
server.starttls()
server.login(username,password)
server.sendmail(fromaddr, toaddrs, message)
server.quit()
Text()
@paxdiablo沒有我刪除爲原始。這是一個更簡單的版本,因爲其他人無法回答 – 2014-09-11 03:50:26
道歉,普雷斯頓,當時我看,原來還在那裏,它看起來像這只是一些額外的信息,可以更好地添加到該原件。我已經取消了這個,對於麻煩抱歉。您可能希望將一些原始信息添加到該信息中,因爲您上面給出的鏈接僅在特定級別的代表中可見。 – paxdiablo 2014-09-11 03:55:55