mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Added alias remark
This commit is contained in:
parent
5ad3d57d0d
commit
c540e221a1
3 changed files with 17 additions and 1 deletions
2
FAQ.md
2
FAQ.md
|
@ -824,6 +824,8 @@ and setting the user name field to your main email address.
|
||||||
|
|
||||||
Note that you can copy an identity by long pressing it in the list of identities (via *Manual setup and account options* in the main settings page).
|
Note that you can copy an identity by long pressing it in the list of identities (via *Manual setup and account options* in the main settings page).
|
||||||
|
|
||||||
|
**In many cases, an alias address must first be verified via the website of the mail provider**
|
||||||
|
|
||||||
Alternatively, you can enable *Allow editing sender address* in the advanced settings of an existing identity to edit the username when composing a new message,
|
Alternatively, you can enable *Allow editing sender address* in the advanced settings of an existing identity to edit the username when composing a new message,
|
||||||
if your provider allows this. Considering the email address test@example.org you can use these special username formats:
|
if your provider allows this. Considering the email address test@example.org you can use these special username formats:
|
||||||
|
|
||||||
|
|
|
@ -47,6 +47,19 @@
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/etName" />
|
app:layout_constraintTop_toBottomOf="@id/etName" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tvRemark"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="24dp"
|
||||||
|
android:labelFor="@+id/etName"
|
||||||
|
android:text="@string/title_advanced_create_alias_remark"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||||
|
android:textColor="?attr/colorWarning"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/etEmail" />
|
||||||
|
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/ibInfo"
|
android:id="@+id/ibInfo"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
@ -55,7 +68,7 @@
|
||||||
android:contentDescription="@string/title_info"
|
android:contentDescription="@string/title_info"
|
||||||
android:tooltipText="@string/title_info"
|
android:tooltipText="@string/title_info"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/etEmail"
|
app:layout_constraintTop_toBottomOf="@id/tvRemark"
|
||||||
app:srcCompat="@drawable/twotone_info_24" />
|
app:srcCompat="@drawable/twotone_info_24" />
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
</eu.faircode.email.ScrollViewEx>
|
</eu.faircode.email.ScrollViewEx>
|
|
@ -1064,6 +1064,7 @@
|
||||||
<string name="title_advanced_never_favorite">Never favorite</string>
|
<string name="title_advanced_never_favorite">Never favorite</string>
|
||||||
<string name="title_advanced_edit_name">Edit name</string>
|
<string name="title_advanced_edit_name">Edit name</string>
|
||||||
<string name="title_advanced_create_alias">Create alias</string>
|
<string name="title_advanced_create_alias">Create alias</string>
|
||||||
|
<string name="title_advanced_create_alias_remark">In many cases, an alias address must first be verified via the website of the mail provider</string>
|
||||||
|
|
||||||
<string name="title_create_folder">Create folder</string>
|
<string name="title_create_folder">Create folder</string>
|
||||||
<string name="title_create_folder_name">Folder name</string>
|
<string name="title_create_folder_name">Folder name</string>
|
||||||
|
|
Loading…
Reference in a new issue