email.name_address
Abbreviation | em n |
Access | get/set |
Description
The email name and/or address registered with the SMTP server, used by ; native API group SMTP API. This is shown as the name and/or email address of the email sender. It may be overridden by the SMTP server.
The name and/or email address is supplied in the standard format for Internet Address Specifications. For further information see Section 3.4, RFC-2822.
The following get example shows an address only format, and the set example shows an example of a name and address.
For a demonstration, see the Sending a Secure SMTP Email application note.
Arguments
<name_address>
in either of the forms:
local-part@domain
display-name <local-part@domain>
Default
None
Properties
- takes effect immediately
Supported Platforms
Get example
> get email.name_address
no.name@example.com
Set example
> set em n "Firstname Lastname <first.last@mydomain.com>"
Set OK
> get em n
Firstname Lastname <first.last@mydomain.com>
email.smtp.host
Abbreviation | em s h |
Access | get/set |
Description
The SMTP server host (e.g. smtp.myemail.com
) used by ; native API group SMTP API.
Arguments
<host string>
Default
None
Properties
- takes effect immediately
Supported Platforms
Get example
> get email.smtp.host
smtp.example.com
Set example
> set em s h smtp.myemail.com
Set OK
email.smtp.password
Abbreviation | em s w |
Access | get/set |
Description
The SMTP server login password used by ; native API group SMTP API.
Arguments
<password>
Default
None
Properties
- takes effect immediately
Supported Platforms
Get example
> get email.smtp.password
abc123
Set example
> set em s w loooong_SECR3T_password
Set OK
email.smtp.port
Abbreviation | em s p |
Access | get/set |
Description
The SMTP server port used by ; native API group SMTP API.
Arguments
<port_number>
Range: 1 - 65535
Default
587
Properties
- takes effect immediately
Supported Platforms
Get example
> get email.smtp.port
25
Set example
> set em s p 587
Set OK
email.smtp.username
Abbreviation | em s u |
Access | get/set |
Description
The SMTP server login username used by the SMTP API. This is optional depending on the SMTP host: email.smtp.host.
Arguments
<user_name>
Default
None
Properties
- takes effect immediately
Supported Platforms
Get example
> get email.smtp.username
No Name
Set example
> set email.smtp.user "Firstname Lastname"
Set OK
> get em s u
Firstname Lastname