It is currently Thu May 23, 2013 7:45 am

All times are UTC + 1 hour




Post new topic Reply to topic  [ 355 posts ]  Go to page Previous  1 ... 20, 21, 22, 23, 24
Author Message
 Post subject: Re: PureSMTP library : mail & attachments (AUTH supported)
PostPosted: Mon Dec 12, 2011 10:53 pm 
Offline
Addict
Addict

Joined: Fri Oct 23, 2009 2:33 am
Posts: 2862
Location: Wales, UK
All of gnozal's libs are currently 32bit only, so you can't compile them into a 64bit app. Should be fine in a 32bit app running on 64bit.

_________________
IdeasVacuum
If it sounds simple, you have not grasped the complexity.


Top
 Profile  
 
 Post subject: Re: PureSMTP library : mail & attachments (AUTH supported)
PostPosted: Wed Dec 14, 2011 3:12 pm 
Offline
User
User

Joined: Thu Aug 26, 2004 9:18 pm
Posts: 12
Location: Isere (France)
Thanks, but I've an other answer that simplify my life : Purebasic 4.60 already include email's functions (sendmail, etc.) :)
No need PureSMTP anymore (in my case).


Top
 Profile  
 
 Post subject: Re: PureSMTP library : mail & attachments (AUTH supported)
PostPosted: Wed Dec 14, 2011 3:15 pm 
Offline
Addict
Addict

Joined: Tue Feb 22, 2011 1:16 pm
Posts: 1459
PureSMTP is far better than PureBasic's mail sending, believe me!

_________________
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!


Top
 Profile  
 
 Post subject: Re: PureSMTP library : mail & attachments (AUTH supported)
PostPosted: Wed Dec 14, 2011 5:19 pm 
Offline
Addict
Addict

Joined: Fri Oct 23, 2009 2:33 am
Posts: 2862
Location: Wales, UK
Unfortunately PB's email lib is out of date, it currently doesn't support authentication and that makes it less than useful for sending. Gnozal's lib is generally superior anyway, much better functionality and good speed. If producing a 32bit app is an issue, you could perhaps just make the email part a separate 32bit exe and call it from your main app.

_________________
IdeasVacuum
If it sounds simple, you have not grasped the complexity.


Top
 Profile  
 
 Post subject: POLINK: error: Unresolved external symbol '_PB_FindString'
PostPosted: Fri Dec 16, 2011 12:16 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Sun Aug 03, 2003 12:06 am
Posts: 167
Location: Austria
I changed to 4.60 and back to the previous version several times during the last 2 month
But still cannot compile my main application.

I get a messagerequester:
POLINK: error: Unresolved external symbol '_PB_FindString'.
POLINK: fatal error: 1 unresolved external(s).

Something obviously has changed ... my program was made in 2006 and updated 3 - 4 times each year ... with 4.60 is the first time I cannot run and compile it.

_________________
Image


Top
 Profile  
 
 Post subject: Re: POLINK: error: Unresolved external symbol '_PB_FindStrin
PostPosted: Fri Dec 16, 2011 12:27 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Thu Jan 10, 2008 1:30 pm
Posts: 711
Location: Germany, Glienicke
No Bug in PB.

You must also update you User-Libs to 4.60!!

_________________
Image


Top
 Profile  
 
 Post subject: Re: POLINK: error: Unresolved external symbol '_PB_FindStrin
PostPosted: Fri Dec 16, 2011 12:56 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Sun Aug 03, 2003 12:06 am
Posts: 167
Location: Austria
Thank you for your fast answer

The only userlib I use is the PureSMTP library
Freeware by Philippe GUNTZ a.k.a. gnozal [xxx email xxx or http://people.freenet.de/gnozal]
Please report any bugs at the purebasic forum.

The website does not exist anymore

I will try to email gnozal

Thanks again

_________________
Image


Top
 Profile  
 
 Post subject: Re: POLINK: error: Unresolved external symbol '_PB_FindStrin
PostPosted: Fri Dec 16, 2011 8:49 am 
Offline
PureBasic Expert
PureBasic Expert
User avatar

Joined: Sat Apr 26, 2003 8:27 am
Posts: 4231
Location: Strasbourg / France
Thade wrote:
The only userlib I use is the PureSMTP library

PureSMTP forum thread : viewtopic.php?f=25&t=12752

See 'Download' section.

_________________
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).


Top
 Profile  
 
 Post subject: Re: PureSMTP library : mail & attachments (AUTH supported)
PostPosted: Fri Dec 16, 2011 12:24 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Sun Aug 03, 2003 12:06 am
Posts: 167
Location: Austria
Thanks - that solved the problem
Just updated the lib and it works again.

_________________
Image


Top
 Profile  
 
 Post subject: Re: PureSMTP library : mail & attachments (AUTH supported)
PostPosted: Wed Apr 17, 2013 2:18 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Mon Jun 09, 2003 8:30 am
Posts: 158
Hi

It would be usefull if a mail in ISO-8859-1 would change the subject
automatically as shown in the following proc

i stumbled upon this issue when testing with the webmailfrontend from t-online.
With german umlaute (ä ö ü ..) in subject it wouldn't show this mails
because the subject was malformed

Other mailclients and frontends had no problems with the "umlaute"
but have no problems with coded subjects too. (gmx webfrintend can't deal with coded subject ..Image)
tested without unicode
Code:
Procedure.s subjectformer(subject.s)
  ;Codierung der Umlaute in Mails für ISO-8859-1
  For i=1 To Len(subject)
    test=Asc(Mid(Subject,i,1))
    If test>127
      subjectn.s+ "="+Hex(test)
    Else
      subjectn+Chr(test)
    EndIf
  Next
  ProcedureReturn "=?ISO-8859-1?Q?"+subjectn+"?="
EndProcedure
;Subject.s="Ümläütä"
;subject=Subjectformer(subject)
;Debug subject

_________________
사십 둘 .


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 355 posts ]  Go to page Previous  1 ... 20, 21, 22, 23, 24

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

 


Powered by phpBB © 2008 phpBB Group
subSilver+ theme by Canver Software, sponsor Sanal Modifiye