Normal Topic @sendmail bcc glitch in ver 2.5.2 (Read 2376 times)
lksseven
Full Member
***
Offline



Posts: 416
Location: Southwest
Joined: Jan 26th, 2009
@sendmail bcc glitch in ver 2.5.2
Apr 30th, 2012 at 4:30pm
Print Post Print Post  
After upgrading to 2.5.2 from 2.5.0, the blindcarboncopy (bcc) doesn't seem to be working in @sendmail.

Here is the code in which the 'bcc' isn't working in 2.5.2, but was in 2.5.0 (all else in @sendmail is working fine).  It isn't a problem for me at this point, but just as an 'fyi' ... or a request for correction of my CODE, if it's in error).

vEmail = @sendmail("smtp2go.com","MyCompany Invoice " + vSONum,"Myserver@gmail.com",vInvoiceEmailAddress,"MyCompanyInvoices@gmail.com;me
3@mycompany.com","MyCompanyInvoicesBackup@gmail.com","","","",vInvoiceImage)
  

Larry
Back to top
IP Logged
 
Steve_in_Texas
Senior Member
*****
Offline


No personal text

Posts: 893
Location: San Antonio
Joined: Feb 21st, 2004
Re: @sendmail bcc glitch in ver 2.5.2
Reply #1 - May 1st, 2012 at 3:30am
Print Post Print Post  
Larry,

I think you are missing the login credentials. (The last two arguments before the attachment.)

Also, add a line to show what error number occurred, if any:

Code
Select All
if vEmail <> 0 then writeln("Email did not send. Error code: "+vemail) else writeln("Email sent successfully.") 



You can see the email error codes here:http://lantica.com/support/kb/article/000133

Good luck!
Steve
  
Back to top
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: @sendmail bcc glitch in ver 2.5.2
Reply #2 - May 1st, 2012 at 2:38pm
Print Post Print Post  
Hello Steve,

He might not need login credentials depending on his smtp server.

Hi Larry,

I believe this will be fixed in 2.5.3 when it is released as I know there was an issue with BCC not working in 2.5.2

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
lksseven
Full Member
***
Offline



Posts: 416
Location: Southwest
Joined: Jan 26th, 2009
Re: @sendmail bcc glitch in ver 2.5.2
Reply #3 - May 2nd, 2012 at 5:01am
Print Post Print Post  
Thanks, Ray.

Steve,  thanks for that tip on the 'Email <> 0' line - I will add that to my code to enhance my feedback.
  

Larry
Back to top
IP Logged