Search results

  1. P

    Python - Hidden Text / Html Mail

    The whole thing looks something like this : def send_email(recipient, subject, html_content): try: # Replace image URLs in the HTML template so that they point to the content IDs html_content = html_content.replace('src=“logo.png”', 'src=“cid:logo_img” alt=“company logo”') html_content =...
  2. P

    Python - Hidden Text / Html Mail

    We need a mail with HTML and text mail in one, so if the browser can not display HTML or the mail client should display the text part
  3. P

    Python - Hidden Text / Html Mail

    I have a Python tool that I want to use to send emails. I want to send a hidden text within an html mail without the plaintext being displayed - Currently my emails end up in spam, so I want to try to stop the emails ending up in spam. I hope someone can help me, thank you very much.
Back
Top Bottom