Skip to content Skip to sidebar Skip to footer

Prevent End Of Email From Being Collapsed

I'm using Flask-Mail to send email notifications for events and currently I'm encountering a problem where if two emails of the same subject end with the same thing (which is a rat

Solution 1:

After doing some research, it does not seem as though gmail gives you an option to turn this off. All of the articles written on this topic suggest making your footer unique, which is exactly what you are doing.

Furthermore, this option means that the content of the email does not change at all. This seems to be the best solution.

Solution 2:

There is an option in Gmail which allows you to turn off conversation view.

How the grouping occurs is:

  • The subject must be similar
  • The sender must be a part of the thread OR in-reply-to must be used

Now to save space, Gmail condenses texts that are same, which is what you see. If you want to turn off conversation view in desktops just navigate to setting -- > generals (tab) for desktop and use the radio button select and press save.

enter image description here

If you are after other devices check this link out.

Post a Comment for "Prevent End Of Email From Being Collapsed"