Skip to content

Commit

Permalink
[SmarterMail100] Setting Full Name on CreateAccount
Browse files Browse the repository at this point in the history
Tested with SmarterMail Free 100.0.9088.25586 (Nov 18, 2024)
  • Loading branch information
FuseCP-TRobinson committed Nov 22, 2024
1 parent 47c0c0c commit ede596b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ public void CreateAccount(MailAccount mailbox)
{
domain = GetDomainName(mailbox.Name),
userName = mailbox.Name,
fullName = mailbox.FullName,
fullName = mailbox.FirstName + " " + mailbox.LastName,
password = mailbox.Password,
maxMailboxSize = (long)mailbox.MaxMailboxSize * 1048576
};
Expand Down

0 comments on commit ede596b

Please sign in to comment.