mirror of
https://github.com/SuiteCRM/SuiteCRM.git
synced 2026-03-02 19:16:58 -05:00
bug: Compose Email Page Lacks "FROM NAME" in HTML value="" attribue, leading to Bug in sent Mails #4152
Labels
No labels
Area: API
Area: Campaigns
Area: Cases
Area: Clean Up
Area: Clean Up: Performance
Area: Dashlets
Area: Databases
Area: Developer Tools
Area: Elasticsearch
Area: Elasticsearch
Area: Emails
Area: Emails:Campaigns
Area: Emails:Cases
Area: Emails:Compose
Area: Emails:Config
Area: Emails:Templates
Area: Environment
Area: Installation
Area: Language
Area: Mobile
Area: Module
Area: PDFs
Area: PHP8
Area: Reports
Area: Studio
Area: Styling
Area: Upgrading
Area: Workflow
Area:Activity Stream
Area:Calls
Area:Import
Area:Projects
Area:Search
Area:Surveys
Area:Themes
Area:Users
Branch:Hotfix
Good First Issue
Hacktoberfest
Help Wanted
PR:Community Contribution
PR:Type:Enhancement
Priority:Critical
Priority:Important
Priority:Moderate
Severity: Major
Severity: Minor
Severity: Moderate
Status: Requires Code Review
Status: Requires Updates
Status: Stale
Status: Team Investigating
Status:Assessed
Status:Fix Proposed
Status:Needs Assessed
Status:Requires Automated Tests
Type: Bug
Type:Deprecated
Type:Discussion
Type:Duplicate
Type:Invalid
Type:Question
Type:Suggestion
Type:Suggestion
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/SuiteCRM-SuiteCRM#4152
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ichtestemalwieder on GitHub (Nov 29, 2019).
Issue
Although the SMTP Outgoing Email Configuration for Personal Email Accounts does have a field for the FROM NAME, the Create Email Page does NOT popuplate/print out this FROM NAME in the select options
value=""attribute.This leads to a strange parsing error with the result, that the Recipient receives an Email, where the FROM NAME equals to the recepients Email Adresss!! Pls see screenshots for details
Steps to Reproduce
1.) Configuration with FROM NAME correctly set

2.) This is how this got outputted in HTML in the Compose Email Page: Here the error is created. You can see, no FROM NAME value is printed for the first entry in the
value=""attribute. The second is OK (this is a System account configured from the Admin, No Personal Account).This is how the screen with the select itself looks. 1= The Senders Name in the form of Firstname Secondname, 2 andits the email address of the sender in the form of xxxx.@xxxx.com. 3 is the recipients email Adress.

3.) The resulting Error (after submission of the page) in the logs as the names seems not to be parsable

4.) The resulting Error in the Mail Client (At Position 1 there is the value of the recipient Email, the same as position 3.) This is extremmely confusing for the recipient having its email adress as the senders name.

Possible Fix
The personal Email Configuration Page needs to print the FROM NAME in the respective Select value="" option:
Proof:
When I changed this value (in the Create Email Page) with Chrome Developer Tools from:
<option value="xxxx@xxx.com" inboundid="d7c62e47-20f3-f133-1555-5de06e7ee52e" infos=...To:
<option value="YYYYY <xxxx@xxx.com>" inboundid="d7c62e47-20f3-f133-1555-5de06e7ee52e" infos=...The recipient receives a correct Email with YYYYY als the sender Name and everything is OK....
Your Environment