Questions tagged [mail-sender]

100 questions
0
votes
1 answer

How to add a grid to an email

The code is below, please how can I add the grid to the email. private void button1_Click(object sender, EventArgs e) { } private void Form1_Load(object sender, EventArgs e) { SqlConnection conn = new SqlConnection(); conn.ConnectionString…
Firas S
  • 19
  • 7
0
votes
0 answers

Laravel: sendMail() with database data as email.blade

I am using Mail::send() Laravel 5.2 with a email.blade.php as param which gets its html-content dynamically from the database before. After sending the email arrived empty. But if I put the HTML-content directly into the email.blade.php, it works…
Okay
  • 143
  • 2
  • 2
  • 10
0
votes
1 answer

Only the first mail have information on a for loop Mail::send Laravel

I have a hello world template and I'm trying to send emails with this template in a for loop, I receipt the three mails but only the first mail shows the "hello world" and the other are empty. HELP!!! function testMail(Request $request) { for…
Nesuferit
  • 21
  • 1
  • 5
0
votes
0 answers

Not able to send email using Jboss EAP 7.0.0.Alpha1

I have tried to troubleshoot this issue a lot and now as a last resort posting it here. Please help me! Issue: I am able to send mail by calling the class from a main method. When I try to call the same class from a Struts2 Action class it does not…
0
votes
2 answers

Why email is not sending even if the path is working

This is a piece of code for genrating mail which works until I didnt attach path as a parameter . the thing is if I attach the path it didnt throw any error(no logs). Just the page started being unresponsive,and debugger not even jump to next…
Chandan
  • 217
  • 1
  • 3
  • 17
0
votes
1 answer

determine email sender and send email

I want a user to provide me with some information. By clicking on send I want this information to be sent to my inbox. How can I set the sender of an email? Is that possible in the frontend?
Dribel
  • 465
  • 1
  • 10
  • 24
0
votes
1 answer

Not sure how to test a class that email received feedback

I have following @Service class that is used to receive feedback, verify its details based on a list of criteria. If verified send that to its recipient. I am struggling to write a test case for this class. I know there is no need to test external…
Jack
  • 6,430
  • 27
  • 80
  • 151
0
votes
2 answers

"mail:sender" not working from cron but works when run manually

I have a shell script which will in-turn invokes a perl script. THe perl script has a mail sending functionality. The script runs very well when i run it manually from command prompt and delivers the mail also, while when scheduled from crontab the…
0
votes
1 answer

Email - Survey Mails comes under transactional emails?

I know, what a transactional email is (like sending reset password, sending welcome message confirmation upon registering, etc...). My doubt is the survey mails, are these considered transactional emails? For example, I have a survey and I need to…
Kiran
  • 1,177
  • 4
  • 18
  • 35
0
votes
1 answer

How to send email from jenkins server

I have developed a web applications (WebApp) which has a mail listener and is waiting from a mail from my Jenkins server. How do I configure Jenkins server to send mail . Assume that my WebApp has a unique mail id allocated.
Jobin
  • 326
  • 3
  • 13
0
votes
0 answers

Changing outlook mail sender in C# using Microsoft.Office.Interop.Outlook.Mailitem

I programmed a wpf application that sends an outlook mail through the default logged in user. This is my code: using System; using System.Configuration; using System.IO; using System.Net; using System.Net.Mail; using…
user3731023
  • 65
  • 1
  • 7
0
votes
1 answer

Sending mail of imap mail server through Spring?

Hi im using Spring framework to send the mail . I dont know about mail server settings. We are using mozilla thunderbird. I wrote a sample mail sending application in spring. I googled and came to a conclusion that we need a server host and port. i…
user2910070
0
votes
1 answer

sending mail usingsprings with html content as text

by using above code i send the mail, body with normal text. now i want to send the mail with html content as body any suggestions appriciate. public void sendMail() { SimpleMailMessage message = new SimpleMailMessage(); …
Rajesh Mungara
  • 61
  • 1
  • 2
  • 7
0
votes
1 answer

POSTFIX does not sender_based_routing with postmap

I try to set up a postfix instance to use sender_based_routing on CentOS6 (but that does not really matter I guess). I just yummed postfix and it works. This is the addition I made for getting sender_based_routing to work: # CUSTOM …
Ronald
  • 1,083
  • 3
  • 13
  • 20
0
votes
1 answer

send_email from php site hosted by profusehost

I have my website in PHP hosted with profusehost.net. The problem is that the send_email functionality works correctly when i host it locally on my apache server with mercury mail. But now when i have hosted my pages on profusehost, the mail doesn't…
anubhav
  • 643
  • 3
  • 9
  • 19