Questions tagged [jmail]
28 questions
4
votes
1 answer
ASP: SMTP authentification fails with JMail
I have a bit specific problem. One of the websites I am taking care of runs on ASP and obtains form, whose results are e-mailed to specific address.
For this to achieve, JMail component is used. As long as e-mail was sent locally (let say to…

Yoshi
- 125
- 1
- 2
- 9
3
votes
2 answers
JMail.SMTPMail not working ("Microsoft VBScript runtime error '800a01ad' ActiveX component can't create object")
I am sending mail from ASP page using below code
Dim MyMail
Set MyMail = Server.CreateObject("JMail.SMTPMail")
MyMail.ServerAddress = ""
MyMail.Sender = "senderemail"
MyMail.AddRecipient "mail@mail.com"
MyMail.Subject = "Inquiry "
MyMail.Body =…

User5590
- 1,383
- 6
- 26
- 61
1
vote
1 answer
Javax mail message not working
I have developed a GWT email application. When I run it, it works fine and doesnt throw any error, but the mail doesn't get delivered to the recipient after i've clicked send button. I think there must be something i'm doing wrong. Please, any help…

Nixr Systems
- 77
- 2
- 9
1
vote
0 answers
Jmail set return email address
I'm using Jmail 4.5 (www.dimac.net), I have set the Return-Path but if the email bounces it doesn't use the return address. It sends it back to the original sender.
.AddHeader "Return-Path","email@domain.com"
I'm just stumped :(

webb
- 215
- 1
- 5
- 12
1
vote
2 answers
How do i send a SSL email in Jmail?
Everyone I am using vb6 to send out emails. I have come across a situation where i need to send it Secured via Jmail.
How do i send a SSL email in Jmail?
Here is my current code, I need it to work with SSL as well.
Set objEmail =…

Rico
- 1,258
- 4
- 17
- 35
1
vote
0 answers
How to use post method when clicking hyperlink in email body using Jmail?
Im using Jmail to send an email from a classic asp page.
The email contains hyperlinks for service ratings that the customer can click, for a vote.
Upon clicking this hyperlink an asp page opens in the browser with a thank you message. Currently…

Ivan
- 368
- 3
- 14
1
vote
0 answers
Catch exception inside asyncTask
I am facing the issue.
I want to send an email, I make code inside AsyncTask class.
But I can not catch network exception or any exception. Below is my code for sending an email
public class SendMail extends AsyncTask {
int…

user3157841
- 79
- 1
- 1
- 6
1
vote
0 answers
Manually adding a DKIM header
Forgive the noob question, but up until yesterday I didn't even know what a DKIM was.
We are using Windows Server 2008 R2 and mailEnable 5.51 Standard Edition as an out going only SMTP. This is only used by JMail form to email traffic.
I'm trying…

Strontium_99
- 1,771
- 6
- 31
- 52
1
vote
1 answer
Jmail vs System.Net.Mail
Currently all our projects use jMail. It has been this way since .NET 1.0.
Should I start my next project using System.Net.Mail?
Are there any advantages that one has over the other or is it just preference?

Kenneth J
- 4,846
- 11
- 39
- 56
1
vote
1 answer
How to use JMail component in ASP.NET website?
I was coding a contact formula for a client and contacted their host service for port and mail server information. He tells me all mailing has to be done through the following JMail script.
My website is ASP.NET with C# as codebehind.
Anyone know…

Mowinckel
- 195
- 1
- 3
- 15
1
vote
1 answer
How to fix remove whitespace from email headers in classic ASP?
I have a email function which sends email. The thing is done in classic ASP/VBScript and uses
Set objMail = Server.CreateObject("JMail.SMTPMail")
JMail.
How can I remove extra whitespace (= bad MIME encoding) in the header?

poo
- 1,095
- 4
- 13
- 21
1
vote
2 answers
JMAIL: Multiple Recipient
Does JMail accepts delimiter(;) or comma(,) as a separator between different email address like CDO.Message.
For example, we can write,
Mail.To="a@a.com,b@b.com" in CDO.Message.
Does the same is valid for JMAIL like the one…

user3035768
- 11
- 1
1
vote
2 answers
Joomla Jmail addRecipient with name
I am starting to use the Jmail method to send emails via an extension: http://docs.joomla.org/Sending_email_from_extensions
But the method doesn't seem to allow specifying names for the recipient, at least I haven't found the way to do…

jackJoe
- 11,078
- 8
- 49
- 64
1
vote
1 answer
Maximum filesize for e-mail attachments using JMail (Classic ASP)
What is the maximum file size for an attachment in JMail 4.5. I use the function AddURLAttachment().
I'm getting the following error:
jmail.SMTPMail error '8000ffff'
The message was undeliverable. All servers failed to receive the message
I've…

user254875486
- 11,190
- 7
- 36
- 65
0
votes
1 answer
W3 Jmail not working (ActiveX component can't create object)
I am moving the website by setting up a new server and an error is occurring where I try to pull up Jmail and unable to launch the website at the moment.
For your information, I installed Jmail 32 bit version.
Please tell us how to solve the…

WEBTOGI
- 1