Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Email account settings
#46
Don't know why but I had this same problem on my other computer

Seems to be an issue with the default email account. Might be a bug with Outlook. The first computer I used did not have outlook set up on it and the default email account specified in QM worked fine. The second computer has Outlook configured with the same default email and did not work. Once I specified the account in the code instead of letting it call for the default account everything worked fine.

Here's what works for me:
Code:
Copy      Help
;GMAIL CONFIGURATION SETTINGS
,;Incoming Mail (POP3) Server - requires SSL:      
,;pop.gmail.com
,;Use SSL: Yes
,;Port: 995
,;Outgoing Mail (SMTP) Server - requires TLS:     
,;
,;smtp.gmail.com (use authentication)
,;Use Authentication: Yes
,;Use STARTTLS: Yes (some clients call this SSL)
,;Port: 465 or 587
,;Account Name:     your full email address (including @gmail.com or @your_domain.com)
,;Email Address:     your email address ([email protected] or username@your_domain.com)
,;Password:     your Gmail password

;Replace USERNAME with your login ID, and use encrypted password (Don't know how to get anyway other than using QM Email Settings)
str s=
;smtp_server smtp.gmail.com
;smtp_port 465
;smtp_user [email protected]
;smtp_password PASSWORD
;smtp_auth 2
;smtp_secure 1
;smtp_timeout 60
;smtp_email [email protected]
;smtp_displayname [email protected]
;smtp_replyto [email protected]
;pop_server pop.gmail.com
;pop_port 995
;pop_user [email protected]
;pop_password PASSWORD
;pop_auth 0
;pop_secure 1
;pop_timeout 60
ARRAY(str) a; int i nmessages
nmessages=ReceiveMail(s 2|0x100 "$desktop$\pop" a)
out nmessages
for i 0 a.len
,out a[i]
,


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)