Questions tagged [mimemultipart]
22 questions
0
votes
1 answer
how to send email from gmai.com to hotmail.com/yahoo.com with colab, the words and pictures have become unormal
I want to send messages from "southrotaryclub@gmail.com" to several emails like gmail or hotmail, yahoo etc.
However, when I send this message. the hotmail words have become several html files instead of real words. When I read this hotmail from my…

Kai-Chien Lo
- 1
- 2
0
votes
0 answers
text is not sent in smtplib using MIMEMultipart
I tried to send email using smtplib using smtplib in python. I created a object of MIMEMultipart and tried to send email but email is send with subject,to,from but there is no text sent with it.
I tried following code
import smtplib as smtp
from…
user20336969
0
votes
1 answer
Why are we using Square Brackets in python to access MIMEMultipart() components like ['From'], ['To'] for sending email using python?
In a python code, which is sending an email using "smtplib" and "MIMEMultipart" libraries,
I got a doubt on, why we are using "square brackets" for ['From'], ['To'] and ['Subject'] when referring to "MIMEMultipart ()". Could any anyone explain on…

Mech_Saran
- 157
- 1
- 2
- 9
0
votes
0 answers
Send email with Follow up flag and reminder datetime in Python
I am trying to send email using Python script and MIMEMultipart object.
The sending of email is working just fine, but I am trying to flag the email Follow Up with a bell Reminder time. Currently [Reply-By] is not creating a reminder for…

TMY
- 11
- 2
0
votes
1 answer
C script Implementing a MIME Multipart/Mixed sends mail with empty body and empty attachment
I am writing a simple C script to send a Multipart/mixed MIME message , which should send mail body along with attachment.
When I execute the below script , the email comes with an attachment , but bot body and attachment are blank .
Probably I am…

alphabet
- 1
0
votes
0 answers
How can I write threading with tkinter?
I try to develop a program with tkinter. However I need a threading due to some functions in my program.
I'm calling a function when I clicked the button to send mail to the releated e-posta addresses. But, threading doesn't work.(Meanwhile there is…

dralioz
- 1
- 2
0
votes
0 answers
svg file included in MIMEImage is not properly displayed in html email
I need to send email with logo file which is svg. I attach it but it does not get displayed correctly.
Here is my code:
msg=MIMEMultipart()
img_msg=MIMEMultipart('related')
full_path_to_logo_file=os.path.join('C:\\Users\\emails\\images',…

user3151858
- 790
- 4
- 13
- 26