Commands & Syntax > Commands > Networking/Web/E-mail >

www.perfectkeyboard.com

 

E-mail POP3: CONNECT - < email_pop3_connect >() ... [Pro]

 

E-mail POP3: CONNECT
<email_pop3_connect>("Server","Login name","Password","Connection Id",Port,TLS/SSL)
Available in: Professional edition

This command opens a connection to an e-mail account. This command needs to be called before any other is used.

 

#

Parameter name

Parameter description

1

Server

Server where e-mail account exist. Example: myemails.com

2

Login name

The e-mail account name.

3

Password

The account password.

4

Connection Id

An identifier of connection to the e-mail account. Other commands use this Id.

5

Port

 

6

TLS/SSL

 

 

Example (Macro Steps):

 

1

<#> <#> Thic sample shows how to get list of e-mails received on POP3 account.

2

Macro execution: ONLY COMMANDS

3

<#> <#> Connect to POP3 account first:

4

E-mail POP3: CONNECT Server=myemails.com, Login name=myaccount, Password=737qw7523#$, Connection Id = POP3Connection, Port = , TLS/SSL =

5

<#> <#> Do what you need here....

6

<#> <#> Disconnect from the account:

7

E-mail POP3: DISCONNECT Connection Id = POP3Connection

Example (Plain Text):

 

<#> Thic sample shows how to get list of e-mails received on POP3 account.

<cmds>

 

<#> Connect to POP3 account first:

<email_pop3_connect>("myemails.com","myaccount","737qw7523#$","POP3Connection")

 

<#> Do what you need here....

 

<#> Disconnect from the account:

<email_pop3_disconnect>("POP3Connection")